How do I automatically install New Relic extension using Azure ARM Template?
问题 I am using a azure arm template to create a web app in azure. Now I need to install New Relic Extension in the webapps which will be created using this template. So I was unable to find specific json format. Please help me out! 回答1: Please have a try to add the json code snipped in the ARM template. "resources": [ { "apiVersion": "2015-08-01", "name": "NewRelic.Azure.WebSites", "type": "siteextensions", "dependsOn": [ "[resourceId('Microsoft.Web/Sites', variables('webSiteName'))]" ],