gpt4 book ai didi

azure - 按标签名称查找 Azure 资源组

转载 作者:行者123 更新时间:2023-12-03 03:08:34 26 4
gpt4 key购买 nike

最近我更新了 Azure 自动化帐户中的 Azure Powershell 模块,似乎使用新版本的 AzureRm.Resources 模块,处理资源和资源组标签的方式发生了变化。以前,这是我列出具有 AutoShutdownSchedule 标记名称的资源组的方式

(Get-AzureRmResourceGroup | where {$_.Tags.Name -contains "AutoShutdownSchedule"}

现在根据https://learn.microsoft.com/en-us/azure/azure-resource-manager/resource-group-using-tags我必须使用:

Find-AzureRmResourceGroup -Tag @{Name="AutoShutDownSchedule"}

但这不会返回任何内容。但是 Find-AzureRmResourceGroup 正在工作:

    Find-AzureRmResourceGroup


id : /subscriptions/xxxxx/resourceGroups/HaaS-CDH-Starter-Spotfire-1393
name : xxxxx
location : eastus2
tags : @{AutoShutdownSchedule=18:00}
properties : @{provisioningState=Succeeded}

id : /subscriptions/xxxxxx/resourceGroups/mnt-dev-us
name : xxxx
location : eastus2
tags : @{AutoShutdownSchedule=18:00}
properties : @{provisioningState=Succeeded}

有什么建议我做错了什么吗?

最佳答案

您应该使用以下命令获取名称为 AutoShutdownSchedule 的标签的资源组。

Find-AzureRmResourceGroup -Tag @{ AutoShutdownSchedule = $null }

Find-AzureRmResourceGroup cmdlet 按标记名称查找资源组的示例可以从以下位置获取:

get-help Find-AzureRmResourceGroup -full
--------------------------  FindByTagName  --------------------------

Find-AzureRmResourceGroup -Tag @{ testtag = $null }

Finds all resource group with a tag with name 'testtag'.

注意:已验证使用 AzureRm.Resources 模块版本:3.5.0

关于azure - 按标签名称查找 Azure 资源组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41957652/

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