不支持使用二头肌的 IpGroup 上的 Azure 标签?

问题描述 投票:0回答:1

我想向 ipGroups 添加标签。我在 MS 文档中看到这似乎是可能的,但是当我在二头肌中执行它时,出现以下错误: "statusMessage": "{"Message":"请求无效。","ModelState":{"resource.properties.tags":["发生错误。"]}}",

这是我的二头肌代码

Here's my bicep code

当我将鼠标悬停在标签属性上时,我收到此消息:enter image description here

这是 MS 文档:https://learn.microsoft.com/en-us/azure/templates/microsoft.network/ipgroups?pivots=deployment-language-bicep

azure azure-resource-manager azure-bicep
1个回答
0
投票

根据 MS 文档,

tags
直接在资源上定义,而不是在
properties
内:

resource ipgroup 'Microsoft.Network/ipGroups@2024-05-01' = {
  name: ipGroup.name
  location: location
  tags: union(commonTags, ipGroup.tags, dateCreationTag)
  properties: {
    ipAddresses: ipGroup.ip
  }
}

© www.soinside.com 2019 - 2024. All rights reserved.