作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
虽然我知道答案,但我只是想我会把这个问题留给遇到此错误消息的其他人。我的搜索结果中似乎没有任何结果。
使用此命令运行 Azure 资源管理器模板时:
New-AzResourceGroupDeployment -WhatIf -ResourceGroupName my-rg -TemplateFile my-rg-tst-parameters.json -TemplateParameterFile .\my-rg-tst-parameters.json
我收到这个错误:
New-AzResourceGroupDeployment: Cannot retrieve the dynamic parametersfor the cmdlet. Parameter type in parameters cannot be null or empty
最佳答案
这种情况下的错误是因为正在运行的命令将参数文件传递到它应该解析模板文件的位置。正确的命令是:
New-AzResourceGroupDeployment -WhatIf -ResourceGroupName my-rg -TemplateFile .\my-rg-template.json -TemplateParameterFile .\my-rg-tst-parameters.json
关于powershell - 新的 AzResourceGroupDeployment : Cannot retrieve the dynamic parameters for the cmdlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63216954/
我是一名优秀的程序员,十分优秀!