Azure Resource Group Template for App Services “Mo

2019-05-26 00:14发布

问题:

I'm trying to find the correct template to use for the App Service "Mobile App" for deployment via New-AzureRmResourceGroupDeployment

I've had a look at the template for Web App but doesn't appear to be anything to specify a type or kind for Mobile App https://github.com/Azure/azure-resource-manager-schemas/blob/master/schemas/2015-08-01/Microsoft.Web.json

回答1:

You can just add the "kind" property to a website resource, e.g.

       {
        "name": "[parameters('siteName')]",
        "type": "Microsoft.Web/sites",
        "location": "[resourceGroup().location]",
        "apiVersion": "2014-06-01",
        "kind": "mobileapp" ...