FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

openstack_lb_vip_v1

Manages a V1 load balancer vip resource within OpenStack.

Example Usage

resource "openstack_lb_vip_v1" "vip_1" {
  name = "tf_test_lb_vip"
  subnet_id = "12345"
  protocol = "HTTP"
  port = 80
  pool_id = "67890"
}

Argument Reference

The following arguments are supported:

The persistence block supports:

Attributes Reference

The following attributes are exported:

Import

Load Balancer VIPs can be imported using the id, e.g.

$ terraform import openstack_lb_vip_v1.vip_1 50e16b26-89c1-475e-a492-76167182511e

See the source of this document at Terraform.io