Skip to content

Commit 0f93d6c

Browse files
fixing issues with load balancer
1 parent c187eda commit 0f93d6c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

azuredeploy.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,13 +450,16 @@
450450
]
451451
},
452452
"adfsBEAddressPoolID": {
453-
"value": "[variables('adfsBEAddressPoolID')]"
453+
"value": "[concat(reference('loadBalancerDeployment').outputs.adfslbID.value,'/backendAddressPools/',variables('lbbe'))]"
454454
},
455455
"wapRDPNATRuleIDs": {
456-
"value": "[variables('wapRDPNATRuleIDs')]"
456+
"value": [
457+
"[concat(reference('loadBalancerDeployment').outputs.waplbID.value,'/inboundNatRules/',variables('rdpNats')[0])]",
458+
"[concat(reference('loadBalancerDeployment').outputs.waplbID.value,'/inboundNatRules/',variables('rdpNats')[1])]"
459+
]
457460
},
458461
"wapBeAddressPoolID": {
459-
"value": "[variables('wapBeAddressPoolID')]"
462+
"value": "[concat(reference('loadBalancerDeployment').outputs.waplbID.value,'/backendAddressPools/',variables('lbbe'))]"
460463
}
461464
}
462465
}
@@ -608,4 +611,4 @@
608611
}
609612
}
610613
]
611-
}
614+
}

0 commit comments

Comments
 (0)