From b4ac5bcf1710e3ce57f5f9ad566b3d130c7dacee Mon Sep 17 00:00:00 2001 From: Kirill Shirinkin Date: Fri, 2 Sep 2016 07:54:29 -0500 Subject: [PATCH] provider/openstack: Fix the list of available LB methods for LB pool --- .../docs/providers/openstack/r/lb_pool_v2.html.markdown | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/website/source/docs/providers/openstack/r/lb_pool_v2.html.markdown b/website/source/docs/providers/openstack/r/lb_pool_v2.html.markdown index 8375cddd0..40bb16d18 100644 --- a/website/source/docs/providers/openstack/r/lb_pool_v2.html.markdown +++ b/website/source/docs/providers/openstack/r/lb_pool_v2.html.markdown @@ -15,7 +15,7 @@ Manages a V2 pool resource within OpenStack. ``` resource "openstack_lb_pool_v2" "pool_1" { protocol = "ProtocolHTTP" - lb_method = "LBMethodRoundRobin" + lb_method = "ROUND_ROBIN" listener_id = "d9415786-5f1a-428b-b35f-2f1523e146d2" persistence { type = "HTTP_COOKIE" @@ -52,10 +52,9 @@ The following arguments are supported: will be associated with. Changing this creates a new pool. Note: One of LoadbalancerID or ListenerID must be provided. -* `lb_method` - (Required) The algorithm used to distribute load between the - members of the pool. The current specification supports - LBMethodRoundRobin, LBMethodLeastConnections and LBMethodSourceIp as valid - values for this attribute. +* `lb_method` - (Required) The load balancing algorithm to + distribute traffic to the pool's members. Must be one of + ROUND_ROBIN, LEAST_CONNECTIONS, or SOURCE_IP. * `persistence` - Omit this field to prevent session persistence. Indicates whether connections in the same session will be processed by the same Pool