如何在 azure CLI 中指定要更新的特定资源组?

How do I specify a specific resource group I want to update in azure CLI?

我正在关注 official azure doc 中的 CLI。 具体来说,我正在寻找一种通过 CLI 向 Azure 中的存储帐户添加标签的方法。看起来 az storage account update 允许我这样做。

但是如何指定存储组的名称呢?谁能给我举个例子吗?

你为什么不试试这个:

az resource update --set tags.'<tagName>'='<tagValue>' -g <your_rg> -n <your_sa> --resource-type "Microsoft.Storage/storageAccounts"

如下所示:https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/tag-resources

或者这样:

az storage account update --name <your_sa> --resource- group <your_rg> --tags “<tagkey>= <tagvalue>”

经过反复试验,我发现下面这行对我有用:

az storage account update --name storage_account_name --tags 'tag_name=tag_value'