0

我正在尝试向我的模板添加一个插槽,并希望它克隆生产插槽的配置(就像门户提供的一样)。似乎 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": {}
            }
4

1 回答 1

2

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

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

笔记:

  • 插槽名称是WebsiteName/xxxx

  • 如何扩展您的定价层,请参阅此文档

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": {}
}

在此处输入图像描述

于 2017-12-15T06:07:32.247 回答