github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/website/source/docs/providers/openstack/r/networking_floatingip_v2.html.markdown (about) 1 --- 2 layout: "openstack" 3 page_title: "OpenStack: openstack_networking_floatingip_v2" 4 sidebar_current: "docs-openstack-resource-networking-floatingip-v2" 5 description: |- 6 Manages a V2 floating IP resource within OpenStack Neutron (networking). 7 --- 8 9 # openstack\_networking\_floatingip_v2 10 11 Manages a V2 floating IP resource within OpenStack Neutron (networking) 12 that can be used for load balancers. 13 These are similar to Nova (compute) floating IP resources, 14 but only compute floating IPs can be used with compute instances. 15 16 ## Example Usage 17 18 ``` 19 resource "openstack_networking_floatingip_v2" "floatip_1" { 20 region = "" 21 pool = "public" 22 } 23 ``` 24 25 ## Argument Reference 26 27 The following arguments are supported: 28 29 * `region` - (Required) The region in which to obtain the V2 Networking client. 30 A Networking client is needed to create a floating IP that can be used with 31 another networking resource, such as a load balancer. If omitted, the 32 `OS_REGION_NAME` environment variable is used. Changing this creates a new 33 floating IP (which may or may not have a different address). 34 35 * `pool` - (Required) The name of the pool from which to obtain the floating 36 IP. Changing this creates a new floating IP. 37 38 ## Attributes Reference 39 40 The following attributes are exported: 41 42 * `region` - See Argument Reference above. 43 * `pool` - See Argument Reference above. 44 * `address` - The actual floating IP address itself.