Skip to content

Instantly share code, notes, and snippets.

@papeMK2
Created April 12, 2021 10:46
Show Gist options
  • Save papeMK2/ca52952dbceda5e96b4da6e66ad25bae to your computer and use it in GitHub Desktop.
Save papeMK2/ca52952dbceda5e96b4da6e66ad25bae to your computer and use it in GitHub Desktop.
var vnet_name = 'Your VNET name'
var subnet_name = 'Your subnet name'
var app_name = 'Your app service app name'
resource vnetConnector 'Microsoft.Web/sites/networkConfig@2020-10-01' = {
name: '${app_name}/virtualNetwork'
properties: {
subnetResourceId: resourceId('Microsoft.Network/virtualNetworks/subnets', vnet_name, subnet_name)
swiftSupported: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment