我试图找到正确的模板以用于New-AzureRmResourceGroupDeployment进行部署的App Service“移动应用”

我看过了Web App的模板,但似乎并没有指定移动App的类型或种类
https://github.com/Azure/azure-resource-manager-schemas/blob/master/schemas/2015-08-01/Microsoft.Web.json

最佳答案

您可以仅将“种类”属性添加到网站资源中,例如

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

关于powershell - 应用程序服务的Azure资源组模板 “Mobile App”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33605606/

10-08 23:04
查看更多