我正在尝试使用Powershell将标记放在资源和资源组上。 问题是它删除现有标签并添加新标签。
Powershell脚本:
Get-AzureRmResourceGroup "testvsoRG" | Set-AzureRmResourceGroup -Tag @{Environment="UAT";Location="USA";DNS="www.xyz.com";Timezone="PST";Phase="Live"}
$resourceGroupName="testvsoRG"
$tags_to_apply=(Get-AzureRmResourceGroup -Name $resourceGroupName).tags
Find-AzureRmResource -ResourceGroupName $resourceGroupName | foreach
{
Set-AzureRmResource -ResourceId $_.resourceid -Tag $tags_to_apply -Force
}
我想要什么 假设我有3个标签。我将提供资源组,它应该将这3个标签添加到资源组及其资源。资源组及其资源中已包含一些标记。我希望保留这些标签,如果我的新标签与现有标签匹配,那么它应该更新它。
仅适用于资源组
$h = @{1="one";2="two";3="three"}
$resourceGroupName="testvsoRG"
$group=(Get-AzureRmResourceGroup -Name $resourceGroupName).tags
foreach ($key in $group.Keys)
{
if ($h.ContainsKey($key))
{
$group.Remove($key)
}
}
$group += $h
write-host $group
错误
System.Collections.DictionaryEntry System.Collections.DictionaryEntry System.Collections.DictionaryEntry System.Collections.DictionaryEntry System.Collections.DictionaryEntry System.
Collections.DictionaryEntry System.Collections.DictionaryEntry System.Collections.DictionaryEntry System.Collections.DictionaryEntry
在Azure资源组资源中添加标记
$resources = Get-AzureRmResource -ResourceGroupName $resourceGroupName
foreach ($r in $resources)
{
$resourcetags = (Get-AzureRmResource -ResourceId $r.ResourceId).Tags
foreach ($rkey in $resourcetags.Keys)
{
if ($h.ContainsKey($rkey))
{
$resourcetags.Remove($rkey)
}
}
$resourcetags += $h
Set-AzureRmResource -Tag $resourcetags -ResourceId $r.ResourceId -Force
}
错误
Get-AzureRmResource : Parameter set cannot be resolved using the specified named parameters.
答案 0 :(得分:1)
如果您使用$tags_to_apply=(Get-AzureRmResourceGroup -Name $resourceGroupName).tags
,$tags_to_apply
将是哈希表。
资源组及其资源中已包含一些标记。我希望保留这些标签,如果我的新标签与现有标签匹配,那么它应该更新它。
根据我的理解,您希望在哈希表中添加新项目,如果该项目存在于哈希表中,则更新它。你可以参考我的示例命令,它可以正常使用。
$hashtable = @{1="one";2="two";3="three"}
$h = @{4="four";2="two2"}
foreach($key in $($hashtable.keys)){
if ($h.ContainsKey($key)){
$hashtable.Remove($key)
}
}
$hashtable += $h
<强>更新强>:
由于密钥名称,我可能会混合使用int
和string
,我会更改密钥名称,并且工作正常。
首先,设置Tag
。
$resourceGroupName = "resourceGroupName"
Set-AzureRmResourceGroup -Name $resourceGroupName -Tag @{tag1="one";tag2="two2";tag3="three"}
其次,使用新的哈希表设置Tag
。
$h = @{tag2="two";tag4="four"}
$resourceGroupName="resourceGroupName"
$group=(Get-AzureRmResourceGroup -Name $resourceGroupName).Tags
foreach($key in $($group.keys))
{
if(!$key){
if ($h.ContainsKey($key)){
$group.Remove($key)
}
}
}
$group += $h
Set-AzureRmResourceGroup -Name $resourceGroupName -Tag $group