gpt4 book ai didi

具有部署槽的 Azure 应用服务二头肌模板

转载 作者:行者123 更新时间:2023-12-02 06:16:33 24 4
gpt4 key购买 nike

这是我用于部署应用程序服务的二头肌模板。需要帮助添加名称为“staging”的插槽(要从父级克隆的设置)

resource appServicePlan 'Microsoft.Web/serverfarms@2020-06-01' = {
name: appServicePlanName
location: location
properties: {
reserved: true
}
sku: {
name: sku
}
kind: 'linux'
}
resource appService 'Microsoft.Web/sites@2020-06-01' = {
name: webAppName
location: location
properties: {
serverFarmId: appServicePlan.id
siteConfig: {
linuxFxVersion: linuxFxVersion
}
}
}

最佳答案

您正在寻找Microsoft.Web sites/slots资源。这是一个最小的例子:

resource stagingSlot 'Microsoft.Web/sites/slots@2021-02-01' = {
name: 'staging'
parent: yourparent
location: location
kind: 'app'
properties: {
serverFarmId: appService.id
}
}

关于具有部署槽的 Azure 应用服务二头肌模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74177724/

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