provider/openstack: Fix documentaion for whole LBaaS v2 group
This commit is contained in:
parent
3468b6d9f1
commit
52f130cb64
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: "openstack"
|
layout: "openstack"
|
||||||
page_title: "OpenStack: openstack_lbaas_listener_v2"
|
page_title: "OpenStack: openstack_lb_listener_v2"
|
||||||
sidebar_current: "docs-openstack-resource-lbaas-listener-v2"
|
sidebar_current: "docs-openstack-resource-lbaas-listener-v2"
|
||||||
description: |-
|
description: |-
|
||||||
Manages a V2 listener resource within OpenStack.
|
Manages a V2 listener resource within OpenStack.
|
||||||
|
@ -13,7 +13,7 @@ Manages a V2 listener resource within OpenStack.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "openstack_lbaas_listener_v2" "listener_1" {
|
resource "openstack_lb_listener_v2" "listener_1" {
|
||||||
protocol = "HTTP"
|
protocol = "HTTP"
|
||||||
protocol_port = 8080
|
protocol_port = 8080
|
||||||
loadbalancer_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
loadbalancer_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
||||||
|
|
|
@ -13,7 +13,7 @@ Manages a V2 loadbalancer resource within OpenStack.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "openstack_lbaas_loadbalancer_v2" "lb_1" {
|
resource "openstack_lb_loadbalancer_v2" "lb_1" {
|
||||||
vip_subnet_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
vip_subnet_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: "openstack"
|
layout: "openstack"
|
||||||
page_title: "OpenStack: openstack_lbaas_member_v2"
|
page_title: "OpenStack: openstack_lb_member_v2"
|
||||||
sidebar_current: "docs-openstack-resource-lbaas-member-v2"
|
sidebar_current: "docs-openstack-resource-lbaas-member-v2"
|
||||||
description: |-
|
description: |-
|
||||||
Manages a V2 member resource within OpenStack.
|
Manages a V2 member resource within OpenStack.
|
||||||
|
@ -13,7 +13,7 @@ Manages a V2 member resource within OpenStack.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "openstack_lbaas_member_v2" "member_1" {
|
resource "openstack_lb_member_v2" "member_1" {
|
||||||
address = "192.168.199.23"
|
address = "192.168.199.23"
|
||||||
protocol_port = 8080
|
protocol_port = 8080
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,8 @@ The following arguments are supported:
|
||||||
* `pool_id` - (Required) The id of the pool that this member will be
|
* `pool_id` - (Required) The id of the pool that this member will be
|
||||||
assigned to.
|
assigned to.
|
||||||
|
|
||||||
|
* `subnet_id` - (Required) The subnet in which to access the member
|
||||||
|
|
||||||
* `name` - (Optional) Human-readable name for the member.
|
* `name` - (Optional) Human-readable name for the member.
|
||||||
|
|
||||||
* `tenant_id` - (Optional) Required for admins. The UUID of the tenant who owns
|
* `tenant_id` - (Optional) Required for admins. The UUID of the tenant who owns
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: "openstack"
|
layout: "openstack"
|
||||||
page_title: "OpenStack: openstack_lbaas_monitor_v2"
|
page_title: "OpenStack: openstack_lb_monitor_v2"
|
||||||
sidebar_current: "docs-openstack-resource-lbaas-monitor-v2"
|
sidebar_current: "docs-openstack-resource-lbaas-monitor-v2"
|
||||||
description: |-
|
description: |-
|
||||||
Manages a V2 monitor resource within OpenStack.
|
Manages a V2 monitor resource within OpenStack.
|
||||||
|
@ -13,7 +13,7 @@ Manages a V2 monitor resource within OpenStack.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "openstack_lbaas_monitor_v2" "monitor_1" {
|
resource "openstack_lb_monitor_v2" "monitor_1" {
|
||||||
type = "PING"
|
type = "PING"
|
||||||
delay = 20
|
delay = 20
|
||||||
timeout = 10
|
timeout = 10
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: "openstack"
|
layout: "openstack"
|
||||||
page_title: "OpenStack: openstack_lbaas_pool_v2"
|
page_title: "OpenStack: openstack_lb_pool_v2"
|
||||||
sidebar_current: "docs-openstack-resource-lbaas-pool-v2"
|
sidebar_current: "docs-openstack-resource-lbaas-pool-v2"
|
||||||
description: |-
|
description: |-
|
||||||
Manages a V2 pool resource within OpenStack.
|
Manages a V2 pool resource within OpenStack.
|
||||||
|
@ -13,7 +13,7 @@ Manages a V2 pool resource within OpenStack.
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
resource "openstack_lbaas_pool_v2" "pool_1" {
|
resource "openstack_lb_pool_v2" "pool_1" {
|
||||||
protocol = "ProtocolHTTP"
|
protocol = "ProtocolHTTP"
|
||||||
lb_method = "LBMethodRoundRobin"
|
lb_method = "LBMethodRoundRobin"
|
||||||
listener_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
listener_id = "d9415786-5f1a-428b-b35f-2f1523e146d2"
|
||||||
|
|
Loading…
Reference in New Issue