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