ResourceContainers
| project name, type, tags
| where type == 'microsoft.resources/subscriptions/resourcegroups'
| where tags !contains 'Cost Center'
| project name
在 CLI 中,此查询如下所示:
az graph query -q "ResourceContainers | project name, type, tags | where type == 'microsoft.resources/subscriptions/resourcegroups' | where tags !contains 'Cost Center' | project name"
我建议为此使用Azure Resource Graph。资源图允许您在 CLI 或门户中使用 Kusto 语言查询所有 Azure 资源。
要查找没有“成本中心”标签的所有资源组的名称,您可以运行如下查询:
在 CLI 中,此查询如下所示: