我有一个需要动态生成参数名称的场景。像certificate1,certificate2,certificate3 ..等等。目前所有这些参数都应该在主模板中定义。我们可以使用复制在主/父模板中动态迭代和定义参数名称吗?或者在 ARM 模板中是否有一种方法可以实现这一点?
问问题
802 次
2 回答
1
您可以copy
在变量部分或资源定义\资源属性中使用构造。然后您可以concat()
与函数一起使用copyIndex()
来创建名称。
例子:
[concat('something-', copyIndex())]
这将为您提供类似 something-0、something-1、something-2 等的名称(copyIndex 从 0 开始)。你也可以copyIndex
通过给它一个偏移量来选择偏移:
[concat('something-', copyIndex(10))]
这会给你一些名字,比如 something-10、something-11、something-12 等。
复制变量\属性:
"copy": [
{
"name": "nameOfThePropertyOrVariableYouWantToIterateOver",
"count": 3,
"input": {
"name": "[concat('something-', copyIndex('nameOfThePropertyOrVariableYouWantToIterateOver', 1))]"
}
}
]
在这里您需要使用 copyIndex 函数指定您指的是哪个循环,您也可以使用偏移量
于 2018-08-31T05:54:47.017 回答
0
您可以使用 Azure 模板中的复制功能来生成资源的名称,就像证书 1、证书 2、证书 3 ......等等。
下面的例子:
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"apiVersion": "2016-01-01",
"type": "Microsoft.Storage/storageAccounts",
"name": "[concat('storage',copyIndex())]",
"location": "[resourceGroup().location]",
"sku": {
"name": "Standard_LRS"
},
"kind": "Storage",
"properties": {},
"copy": {
"name": "storagecopy",
"count": 3
}
}
],
"outputs": {}
}
存储名称将如下所示:
存储0 存储1 存储2
有关更多详细信息,请参阅在 Azure 资源管理器模板中部署资源或属性的多个实例。
于 2018-08-31T04:20:52.857 回答