我需要在 ARM 模板(JSON 文件)中连接参数,并且 "/subscriptions/@{encodeURIComponent([parameters('id')])}/providers"
有问题。看起来 [parameters('id')]
未被识别为参数,它只是作为文本传递。
我知道可以使用 union
表达式,但在我的情况下,我不需要合并两个单独的参数(根据我的理解,这就是 union
所做的)。我需要构造一个字符串。
我想到的另一个选择是在 JSON 文件之外执行此操作,以便我可以将 "/subscriptions/@{encodeURIComponent([parameters('id')])}/providers"
作为单个参数传递。但我发现这种方法无效,因为在我的 ARM 模板中,我有 10 个类似的变量,我只需要在其中“粘贴”id
的值。
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"id": {
"type": "string"
}
},
"variables": {},
"resources": [{
...
"path": "/subscriptions/@{encodeURIComponent([parameters('id')])}/providers",
...
}]
}
答案 0 :(得分:1)
在 ARM 模板中,您可以使用 concat 和 uriComponent 函数来连接参数:
"[concat('/subscriptions/', uriComponent(parameters('id')), '/providers')]"
在您的示例中,它类似于:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"id": {
"type": "string"
}
},
"variables": {},
"resources": [{
...
"path": "[concat('/subscriptions/', uriComponent(parameters('id')), '/providers')]",
...
}]
}
请参阅 concat 和 uriComponent 的文档。