gpt4 book ai didi

Azure Bicep - 未将对象引用设置到实例

转载 作者:行者123 更新时间:2023-12-02 05:52:32 26 4
gpt4 key购买 nike

我正在尝试使用以下代码创建一个简单的应用服务计划。

param Location string = 'eastus'
resource appServicePlan1 'Microsoft.Web/serverfarms@2020-12-01' = {
name: 'myasp'
location: Location
sku: {
name: 'S1'
capacity: 1
}
}

下面是我用来执行上述 Bicep 脚本的 Azure CLI 命令

az deployment group create --name deploy1 --resource-group az-devops-eus-dev-rg1 --template-file main.bicep

下面是截图

enter image description here

所有这些都在早些时候发挥作用。我使用的是今天发布的最新版本的 Bicep (v0.9.1)。

任何有关现在发生这种情况的原因的指示将不胜感激。

最佳答案

刚刚在 MS 研讨会上遇到了这个问题。我们通过向 appServicePlan 添加一个空的属性元素来解决这个问题。例如。

param Location string = 'eastus'
resource appServicePlan1 'Microsoft.Web/serverfarms@2020-12-01' = {
name: 'myasp'
location: Location
properties: {}
sku: {
name: 'S1'
capacity: 1
}
}

关于Azure Bicep - 未将对象引用设置到实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73467524/

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