Skip to content

Instantly share code, notes, and snippets.

@JanneMattila
Created June 13, 2019 14:03
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 JanneMattila/2293534f4f8d5e2d0303bec8e353fc21 to your computer and use it in GitHub Desktop.
Save JanneMattila/2293534f4f8d5e2d0303bec8e353fc21 to your computer and use it in GitHub Desktop.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Location for all resources."
}
}
},
"variables": {
},
"resources": [
{
"name": "ai",
"type": "Microsoft.Insights/components",
"location": "[parameters('location')]",
"apiVersion": "2015-05-01",
"dependsOn": [],
"properties": {
}
}
],
"outputs": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment