I am having the issue for the below terraform code, it reports invalid or unknown key: load_distribution
resource "azurerm_lb_rule" "tf-lbr-erx-interf" {
resource_group_name = "${data.azurerm_resource_group.tf-rg-erx-external.name}"
loadbalancer_id = "${azurerm_lb.tf-lb-erx-interf.id}"
name = "erx-sha-pre-interf-lbr-01-au-se"
protocol = "Tcp"
frontend_port = "80"
backend_port = "80"
frontend_ip_configuration_name = "erx-sha-pre-interf-fip-au-se"
backend_address_pool_id = "${azurerm_lb_backend_address_pool.tf-lbbp-erx-interf.id}"
probe_id = "${azurerm_lb_probe.tf-lbr-erx-interf.id}"
load_distribution = "Client IP"
}
I found the below github url, but no lead https://github.com/hashicorp/terraform/issues/18919
Any idea?