Azure 部署的 Azure 标记不起作用

Azure Tag for Azure Depolyment not working

我正在尝试创建一个带有 Tag 参数的 Azure 部署,以便使用命令 New-AzResourceGroupDeployment 将标记放在部署上,例如 -

 New-AzResourceGroupDeployment -ResourceGroupName "demo" -TemplateFile "D:\Templates\storage.json" -Tag @{"CreatedFrom"="PS"; "Env"="Dev";}

但面临这个问题 -

New-AzResourceGroupDeployment : A parameter cannot be found that matches parameter name 'Tag'.
At line:1 char:102
+ ... Name "demo" -TemplateFile "D:\Templates\storage.json" -Tag @{"Crea ...
+                                                              ~~~~
    + CategoryInfo          : InvalidArgument: (:) [New-AzResourceGroupDeployment], ParameterBindingException
    + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.N
   ewAzureResourceGroupDeploymentCmdlet

根据 documentation 我们可以将标签参数与 New-AzResourceGroupDeployment 命令一起使用,但它对我不起作用。

任何关于我在这里做错的帮助将不胜感激!

命令在这里工作正常。确保您拥有最新版本的命令。

https://docs.microsoft.com/en-us/powershell/azure/new-azureps-module-az?view=azps-6.1.0