如何使用Azure AZ覆盖/添加参数

时间:2019-02-19 14:39:27

标签: azure arm-template

以前,使用AzureRM我的脚本看起来像这样

SIGSEGV

在Azure AZ中我该怎么做?

这距离我在文档中可以找到的地方还有多远,但是我该如何处理最后两行向模板中覆盖/添加额外属性的地方?

-X faulthandler

1 个答案:

答案 0 :(得分:1)

我仔细查看了文档,发现了这个示例:

az group deployment create -g MyResourceGroup --template-file azuredeploy.json \
                        --parameters @params.json --parameters https://mysite/params.json --parameters MyValue=This MyArray=@array.json

当我尝试按预期工作时,看起来好像错过了该示例的最后一部分。

工作示例:

az group deployment create `
--name LocalTestDeployment `
--resource-group xxx-${env}-${location} `
--mode Incremental `
--template-file ..\webapp\azuredeploy.json `
--parameters `@..\webapp\azuredeploy.parameters-dev.json `
--parameters azureEnvironment=${env} locationKey=${location}