I have two VMS backendvm0 and backendvm1, I am trying to add these Vms to the backendpool of Azure load balancer from Load balancer ARM template deployment. I am using parameter object as below. It is not giving any error, load balancer is being created with name tlba001backendpool_test but it is not showing any VM attached to it.
"backendAddressPools": {
"value": [
{
"name": "tlba001backendpool_test",
"id": "",
"properties": {
"loadBalancerBackendAddresses": [
{
"name": "backendvm0",
"properties": {
"ipAddress": "10.0.2.5"
}
},
{
"name": "backendvm1",
"properties": {
"ipAddress": "10.0.2.4"
}
}
]
}
}
]
},