ARM模板-引用Concat函数中的资源属性

时间:2020-03-03 20:49:24

标签: azure arm-template

情况:在我的模板结构中,我有一些嵌套的模板。嵌套模板之一正在接收资源ID和其他一些参数作为参数。
在资源的名称部分中,我必须 以下内容:
1。。其中一个参数值。
2。资源属性。通过 reference 函数。
因此,代码需要以下内容:

{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { "type": "string" }, "privateendpointInterface": { "type": "string" } }, "variables": { }, "resources": [ { "type": "Microsoft.Network/privateDnsZones/A", "apiVersion": "2018-09-01", "name": "[concat(parameters('dnsZoneName'),reference(parameters('privateendpointInterface'),'2019-09-01','Full').properties.ipConfigurations[0].properties.privateLinkConnectionProperties.fqdns[0])]", "properties": { "aRecords": [ { "ipv4Address": "10.1.1.1" } ] } } ] } 问题:根据设计,不允许在concat函数内部使用引用函数,并且我无法在变量部分中预先存储引用的值。

0 个答案:

没有答案