Skip to content

Instantly share code, notes, and snippets.

@da5is
Created February 2, 2021 18:43
Show Gist options
  • Save da5is/57752aac4455618cd8024b2ea0e01a3b to your computer and use it in GitHub Desktop.
Save da5is/57752aac4455618cd8024b2ea0e01a3b to your computer and use it in GitHub Desktop.
Network Watcher ARM Template
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"networkWatcherName": {
"defaultValue": "networkwatcher",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Network/networkWatchers",
"apiVersion": "2020-05-01",
"name": "[parameters('networkWatcherName')]",
"location": "[resourceGroup().location]",
"properties": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment