gpt4 book ai didi

azure - 我们可以在 azure 二头肌部署中添加等待/延迟吗?

转载 作者:行者123 更新时间:2023-12-02 06:35:58 26 4
gpt4 key购买 nike

是否有任何方法可以在 azure bicep(非 ARM)中添加时间延迟或等待特定资源部署?(例如,等到 NSG 部署后再启动 VNET/子网部署)

尝试添加等待。但它不可用!

最佳答案

您可以像这样添加依赖项:

resource dnsZone 'Microsoft.Network/dnszones@2018-05-01' = {
name: 'demoeZone1'
location: 'global'
}

resource otherZone 'Microsoft.Network/dnszones@2018-05-01' = {
name: 'demoZone2'
location: 'global'
dependsOn: [
dnsZone
]
}

MS Document link FYR

关于azure - 我们可以在 azure 二头肌部署中添加等待/延迟吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74766683/

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