Azure Resource Group Template for App Services “Mo

2019-05-25 23:59发布

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条回答
Animai°情兽
2楼-- · 2019-05-26 00:28

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" ...
查看更多
登录 后发表回答