0
0
llucycodes42
The ibm_lb_vpx_service resource defines a load balancer service. The name property specifies the name of the load balancer service. The vip_id property specifies the VIP identifier of the load balancer service. The destination_ip_address property specifies the IP address of the load balancer service. The destination_port property specifies the port of the load balancer service. The weight property sets the weight of the load balancer service. The connection_limit property sets the maximum number of requests that can be made on the load balancer service at any one time. The health_check property sets the health check type of the load balancer service.
Shortcut: tf_ibm_lb_vpx_service
resource "ibm_lb_vpx_service" "${myResourceName}" {
name = "test_load_balancer_service1"
vip_id = "${ibm_lb_vpx_vip.testacc_vip.id}"
destination_ip_address = "${ibm_compute_vm_instance.myResourceName.ipv4_address}"
destination_port =
weight = 55
connection_limit =
health_check = "HTTP"
}