0
0
llucycodes42
The code defines an OpenStackLB listener for http traffic on the port 8080. By default the listener is bound to the load balancer with the ID d9415786-5f1a-428b-b35f-2f1523e146d2.
Shortcut: tf_openstack_lb_listener_v2
resource "openstack_lb_listener_v2" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
protocol = "HTTP"
protocol_port = 8080
loadbalancer_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
}