-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lack of Ha port in LoadBalancer #1996
Comments
@seyadava do we have swagger for this yet? |
@anzaman I see you have committed some changes on Network specs. Can you weigh in on this? Or include people who can help? |
Hi Guys, In terraform we have made it working using the following : From our side, we have successfully deployed a Azure Load Balancer with HA Ports with the following configuration : resource "azurerm_lb_rule" "lb_haports_rule" {
backend_port = 0
frontend_ip_configuration_name = "${azurerm_lb.private-lb-gateway.frontend_ip_configuration.0.name}"
frontend_port = 0
loadbalancer_id = "${azurerm_lb.private-lb-gateway.id}"
name = "lb_haports_rule"
protocol = "All"
backend_address_pool_id = "${azurerm_lb_backend_address_pool.gateway_backend_pool.id}"
probe_id = "${azurerm_lb_probe.lb_gateway_probe_fw.id}"
resource_group_name = "${var.resource_group_name}"
} And it's working ! We simply add "All" in protocol. Maybe there's nothing to code in go sdk. |
As I can see in PS using protocols to "All" is expected scenario https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-configure-ha-ports |
Sounds like this has been resolved so closing, please reopen as required. |
Request that this be re-opened. This was never fixed, the workaround suggested by @EtienneDeneuve does not work any more (it never really used HA ports). |
According to terraform azure rm provider the go SDK don’t support yet the new load balancer with HA Ports.
hashicorp/terraform-provider-azurerm#372
The text was updated successfully, but these errors were encountered: