gpt4 book ai didi

powershell - 使用 powershell 找不到标记的 Azure 资源组

转载 作者:行者123 更新时间:2023-12-03 05:56:43 25 4
gpt4 key购买 nike

我已根据环境标记了我的 Azure 资源组。

现在我正在尝试在测试环境上进行一些自动化,并且想要检索标有 Env=test 的所有资源组。

我在这里找到了这一行(https://azure.microsoft.com/nb-no/documentation/articles/resource-group-using-tags/)

   $testRg= Find-AzureRmResourceGroup -Tag @{ Name="Env"; Value="Test" } | %{ $_.Name }

问题是这不会返回任何内容。

然后我尝试使用相同的标签来标记单个资源,并使用此行:

$testR= Find-AzureRmResource -TagName Env -TagValue Test| %{ $_.ResourceName }

有人经历过这个或知道我做错了什么吗?

最佳答案

2016 年 8 月之后。Azure powershell 显然发生了重大变化。 https://azure.microsoft.com/en-us/documentation/articles/resource-group-using-tags/

Azure powershell 3.0版本之后根据标签检索资源组的正确方法是:

(Find-AzureRmResourceGroup -Tag @{ Env="Test" }).Name 

关于powershell - 使用 powershell 找不到标记的 Azure 资源组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40278435/

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