Files
opentf/website/source/docs/providers/openstack/r/lb_member.html.markdown
2015-03-31 09:54:45 -06:00

1.4 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
openstack OpenStack: openstack_lb_member docs-openstack-resource-lb-member Manages a load balancer member resource within OpenStack.

openstack_lb_member

Manages a load balancer member resource within OpenStack.

Example Usage

resource "openstack_lb_member" "node_1" {
  address = "196.172.0.1"
  port = 80
  pool_id = "$12345"
  admin_state_up = true
}

Argument Reference

The following arguments are supported:

  • address - (Required) The IP address of the member. Changing this creates a new member.

  • port - (Required) An integer representing the port on which the member is hosted. Changing this creates a new member.

  • pool_id - (Required) The pool to which this member will belong. Changing this creates a new member.

  • admin_state_up - (Optional) The administrative state of the member. Acceptable values are 'true' and 'false'. Changing this value updates the state of the existing member.

  • tenant_id - (Optional) The owner of the member. Required if admin wants to create a pool member for another tenant. Changing this creates a new member.

Attributes Reference

The following attributes are exported:

  • address - See Argument Reference above.
  • port - See Argument Reference above.
  • pool_id - See Argument Reference above.
  • admin_state_up - See Argument Reference above.
  • tenant_id - See Argument Reference above.