部署Azure自动化变量资产时出错

问题描述 投票:4回答:2

当我尝试将变量部署到Azure自动化资产时,我得到了错误,无法部署我的资源。

假设这个模板

{
   "name": "myVariable",
   "type": "Microsoft.Automation/automationAccounts/variables",
   "apiVersion": "2015-10-31",
   "dependsOn": [
      "[resourceId('Microsoft.Automation/automationAccounts', variables('automationAccountName'))]"
   ],
   "location": "[variables('automationLocation')]",
   "properties": {
      "isEncrypted": "false",
      "value": "8f703df8-0448-4ee3-8629-fc3f01840683"
    }
}

部署抛出异常:

{\"Message\":\"The request is invalid.\",\"ModelState\":{\"variable.properties.value\":[\"Invalid JSON primitive: a7d14fb0-232e-4fa0-a748-c7c8fb2082e2.\"]}}

我也尝试过:

"value": "\"8f703df8-0448-4ee3-8629-fc3f01840683\""

但任何尝试都失败了!

任何人都知道如何使用ARM模板配置变量资产?

azure azure-resource-manager azure-automation arm-template
2个回答
3
投票

看一下这些例子你应该逃避引用:

{
  "name": "sampleVariable",
  "properties": {
    "value": "\"ComputerName.domain.com\"",
    "description": "my description",
    "isEncrypted": false
  }
}

Reference


0
投票

如果您尝试使用ARM变量或参数填充“value”键,则需要连接双引号。

{
  "name": "myVariable",
  "type": "variables",
  "apiVersion": "2015-10-31",
  "properties": {
    "value": "[concat('\"', parameters('myVariableValue'), '\"')]"
   },
   "dependsOn": [
     "[resourceId('Microsoft.Automation/automationAccounts/', parameters('automationAccountName'))]"
   ]
}
© www.soinside.com 2019 - 2024. All rights reserved.