gpt4 book ai didi

azure - 部署 Azure 自动化可变 Assets 时出错

转载 作者:行者123 更新时间:2023-12-03 18:38:40 24 4
gpt4 key购买 nike

当我尝试将变量部署到 Azure 自动化 Assets 时,出现错误并且无法部署我的资源。

假设这个模板

{
"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\":\"请求无效。\",\"ModelState\":{\"variable.properties.value\":[\"无效的 JSON 原语:a7d14fb0-232e -4fa0-a748-c7c8fb2082e2.\"]}}

我也尝试过:

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

但是任何尝试都失败了!

有人知道如何使用 ARM 模板配置可变 Assets 吗?

最佳答案

查看示例,您应该转义引号:

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

Reference

关于azure - 部署 Azure 自动化可变 Assets 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48170196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com