【发布时间】:2019-12-25 14:56:06
【问题描述】:
我想知道是否可以使用 Azure ARM 模板输出部分创建自定义输出 bu
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "",
"apiProfile": "",
"parameters": { },
"variables": { },
"functions": [ ],
"resources": [ ],
"outputs": {
"customedata1": {
"type": "string",
"value": "[concat(parameters('NameArray')[copyIndex()],'\"'',', variables('CustomData'),'}')]"
}
}
}
【问题讨论】:
标签: azure azure-resource-manager arm-template