变量替换不在ARM模板文件中生效

时间:2017-10-18 10:59:35

标签: octopus-deploy arm-template

我有一个OD项目,其中一个步骤就是Deploy an Azure Resource Group步骤。模板包含在包中。

根据documentation

  

Octopus将对模板和参数文件执行变量替换。

根据documentation的JSON变量替换,正确的变量格式应为parameters:sqlServerAdminUsername:value给定模板文件,如下所示:

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "sqlServerAdminUsername": {
      "value": "thisvalueshouldbereplaced"
    }
  }
}

我的问题是ARM模板使用参数文件中的原始值,而不是我在OD变量中提供的值。

我做错了什么?

0 个答案:

没有答案