You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
654 B

  1. {
  2. "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  3. "contentVersion": "1.0.0.0",
  4. "parameters": {
  5. "name": {
  6. "type": "String"
  7. }
  8. },
  9. "variables": {
  10. "appInsightsName": "[concat(parameters('name'), 'appinsights')]",
  11. "appInsightsApplicationId": "parameters('name'"
  12. },
  13. "resources": [
  14. {
  15. "apiVersion": "2014-08-01",
  16. "name": "[variables('appInsightsName')]",
  17. "type": "Microsoft.Insights/components",
  18. "location": "[resourceGroup().location]",
  19. "properties": {
  20. "ApplicationId": "[variables('appInsightsApplicationId')]"
  21. }
  22. }
  23. ]
  24. }