Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created June 12, 2022 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlokerse/fcb7194283535bb62d4ef537a19668f4 to your computer and use it in GitHub Desktop.
Save johnlokerse/fcb7194283535bb62d4ef537a19668f4 to your computer and use it in GitHub Desktop.
module modNetworking 'networking.bicep' = {
name: 'deploy-network-components'
params: {
parNicObject: {
name: 'my-nic'
}
parNsgObject: {
name: 'my-nsg'
securityRules: []
}
parVnetObject: {
name: 'my-existing-vnet'
}
}
}
resource resMyVm 'Microsoft.Compute/virtualMachines@2021-11-01' = {
name: 'my-vm'
properties: {
networkProfile: {
networkInterfaces: [
{
id: modNetworking.outputs.outNicId
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment