gpt4 book ai didi

azure - 在资源管理器模板中定义 WebApp 插槽

转载 作者:行者123 更新时间:2023-12-04 22:58:06 25 4
gpt4 key购买 nike

我无法找到有关使用资源管理器模板以编程方式向 WebApp 添加插槽的信息/指南。我的基本配置运行良好,创建了 WebApp 本身、SQL 服务器、SQL DB 等,但我也渴望完成插槽,以便我可以将它们用于开发/测试构建。

有人知道这方面有什么好的资源吗?

最佳答案

我使用以下 ARM 模板为 Azure 应用服务配置部署槽:

{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"siteName": {
"type": "string"
},
"slotName": {
"type": "string"
}
},
"resources": [
{
"apiVersion": "2015-04-01",
"type": "Microsoft.Web/Sites/Slots",
"name": "[concat(parameters('siteName'), '/', parameters('slotName'))]",
"location": "[resourceGroup().location]",
"properties": {},
"resources": []
}
]
}

希望这有帮助。

关于azure - 在资源管理器模板中定义 WebApp 插槽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35986152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com