如何使用 cloningInfo 创建 azure slot?

How do you use cloningInfo to create azure slot?

我正在尝试向我的模板添加一个插槽,并希望让它克隆生产插槽的配置(就像门户提供的那样)。似乎 cloningInfo 是执行此操作的方法,但 sourceWebAppId 似乎不足以完成此操作。当我仅指定 属性 时,我收到一个没有帮助的 HTTP 错误。我找不到任何使用 cloningInfo 复制插槽的示例模板。

这是我的网站资源:

                {
                "apiVersion": "2016-08-01",
                "name": "staging",
                "type": "slots",
                "location": "[resourceGroup().location]",
                "dependsOn": [
                    "[resourceId('Microsoft.Web/Sites/', variables('webSiteName'))]"
                ],
                "properties": {
                    "cloningInfo":{
                        "sourceWebAppId": "[reference(concat('Microsoft.Web/Sites/', variables('webSiteName')), '2016-08-01')]"
                    }
                },
                "tags": {}
            }

如果您在 Premium 应用服务计划上托管了 WebApp。

我们可以使用以下 ARM 模板来克隆 WebApp。 sourceWebAppId 是 WebApp 的资源 ID。我们还需要服务器场 ID。

注:

  • 插槽名称是 WebsiteName/xxxx

  • 如何扩展您的定价等级,请参阅此document

ARM 模板:

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "webSiteName": {
      "type": "string",
      "metadata": {
        "description": "The site name. To use the default value, do not specify a new value."
      }
    },
    "ServicePlanName": {
      "type": "string",
      "metadata": {
        "description": "The host name. To use the default value, do not specify a new value."
      }
    }
  },
  "variables": {
  },

  "resources": [
    {
      "name": "[concat(parameters('webSiteName'), '/staging')]",
      "type": "Microsoft.Web/sites/slots",
      "apiVersion": "2016-08-01",
      "location": "[resourceGroup().location]",
      "tags": {},
      "properties": {
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms/', parameters('ServicePlanName'))]",
        "cloningInfo": {
          "sourceWebAppId": "[resourceId('Microsoft.Web/Sites/', parameters('webSiteName'))]"

        }
      },
      "resources": [
      ]
    }
  ],

  "outputs": {}
}