gpt4 book ai didi

azure - 如何使用 Azure CLI cmdlet 强制删除所有资源组而不提示确认?

转载 作者:行者123 更新时间:2023-12-03 02:09:17 24 4
gpt4 key购买 nike

找到类似的Question但答案在 Azure PowerShell 中。

尝试使用以下 cmdlet 删除特定位置的所有资源组:

az group list --query "[?location=='westus']".name -o tsv | xargs -otl az group delete -n

它要求我提示删除每个资源组。

还尝试通过阅读此 MS Doc 添加标志 -y ,

az group list --query "[?location=='westus']".name -o tsv | xargs -otl az group delete -n -y

错误:

az group delete -n -y rg-105
argument --name/-n/--resource-group/-g: expected one argument

最佳答案

请尝试以下操作:

az group list --query "[?location=='westus']".name -o tsv | xargs -ot -n 1 az group delete -y -n

引用:https://github.com/Azure/azure-cli/issues/1398#issuecomment-276135930

关于azure - 如何使用 Azure CLI cmdlet 强制删除所有资源组而不提示确认?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73834399/

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