【发布时间】:2020-03-13 15:02:52
【问题描述】:
我们能否在应用程序网关分配后在输出中提取 动态 分配的公共 IP 地址,静态地址可以正常工作。
{
"type": "Microsoft.Network/publicIPAddresses",
"apiVersion": "2019-04-01",
"name": "[variables('publicIpName')]",
"location": "[resourceGroup().location]",
"condition": "[variables('usePublicIp')]",
"properties": {
"publicIPAllocationMethod": "Dynamic"
}
},
"outputs": {
"IpAddress": {
"type": "String",
"value": "reference(variables('publicIpName')).IpAddress]"
}
}
错误:
【问题讨论】:
-
嗨 Atul,你能解决你的问题吗?
标签: azure azure-application-gateway