使用PowerShell覆盖Azure资源组上的标记名称

问题描述

下面是天蓝色的资源

PS C:\Windows\System32> Get-AzResource -ResourceGroupName paniRG


Name              : paniavset123
ResourceGroupName : paniRG
ResourceType      : Microsoft.Compute/availabilitySets
Location          : eastus
ResourceId        : /subscriptions/8987b447-d083-481e-9c0f-f2b73a15b18b/resourceGroups/paniRG/providers/Microsoft.C
                    ompute/availabilitySets/paniavset123
Tags              : 
                    Name            Value 
                    ==============  ======
                    CostCenter      ABCDEG
                    Owner           john  
                    classification  Public

从上面的输出中,我想将标记名称“ classification”替换为“ Classification”,将“ Public”替换为“ Accounts”。

我正在按照以下步骤进行操作。

PS C:\Windows\System32> $tags=@{"Classification"="Accounts"}

PS C:\Windows\System32> $s=Get-AzResource -ResourceGroupName paniRG

PS C:\Windows\System32> Update-AzTag -ResourceId $s.ResourceId -Tag $tags -Operation Merge


Id         : /subscriptions/8987b447-d083-481e-9c0f-f2b73a15b18b/resourceGroups/paniRG/providers/Microsoft.Compute/availabilitySets/
             paniavset123/providers/Microsoft.Resources/tags/default
Name       : default
Type       : Microsoft.Resources/tags
Properties : 
             Name            Value   
             ==============  ========
             CostCenter      ABCDEG  
             Owner           john    
             classification  Accounts

当我使用update-aztag命令时,标记值正在更改,但其名称显示为“分类”。

有人可以帮我吗?

解决方法

您可以从哈希表资源classification中删除Tags标签,然后使用新的Classification值添加一个新的Account标签。然后,您可以使用Set-AzResource修改新近更新的哈希表。

$resource = Get-AzResource -Name "RESOURCE NAME" -ResourceGroupName "RESOURCE GROUP NAME"

# Get the tags
$tags = $resource.Tags

# Check if hashtable has classification key
if ($tags.ContainsKey("classification")) {

    # Remove classification key if it exists
    $tags.Remove("classification")
}

# Create Classification tag with Accounts value
$tags.Classification = "Accounts"

# Update resource with new tags
$resource | Set-AzResource -Tag $tags -Force

如果要使用Update-AzTag,则需要使用Replace操作:

Update-AzTag -ResourceId $s.Id -Tag $tags -Operation Replace

Merge操作将更新值,但不会更新键名。

,

只需使用-Operation Replace而不是-Operation Merge

Update-AzTag -ResourceId $s.ResourceId -Tag $mergedTags -Operation Replace