应用服务的 Azure 资源组模板 "Mobile App"
Azure Resource Group Template for App Services "Mobile App"
我正在尝试找到用于应用服务 "Mobile App" 的正确模板,以便通过 New-AzureRmResourceGroupDeployment
进行部署
我查看了 Web 应用程序的模板,但似乎没有为移动应用程序指定类型或种类的内容
https://github.com/Azure/azure-resource-manager-schemas/blob/master/schemas/2015-08-01/Microsoft.Web.json
您可以将 "kind" 属性 添加到网站资源中,例如
{
"name": "[parameters('siteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"apiVersion": "2014-06-01",
"kind": "mobileapp" ...
我正在尝试找到用于应用服务 "Mobile App" 的正确模板,以便通过 New-AzureRmResourceGroupDeployment
我查看了 Web 应用程序的模板,但似乎没有为移动应用程序指定类型或种类的内容 https://github.com/Azure/azure-resource-manager-schemas/blob/master/schemas/2015-08-01/Microsoft.Web.json
您可以将 "kind" 属性 添加到网站资源中,例如
{
"name": "[parameters('siteName')]",
"type": "Microsoft.Web/sites",
"location": "[resourceGroup().location]",
"apiVersion": "2014-06-01",
"kind": "mobileapp" ...