Adjust booleans in cloud modules. (#5155) (#5176)

(cherry picked from commit 3a08903e1c)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2022-08-24 20:22:10 +02:00 committed by GitHub
parent eb1f0c28a9
commit 43dc6ba533
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
51 changed files with 177 additions and 177 deletions

View file

@ -64,7 +64,7 @@ options:
- Type of node
wait:
required: false
default: "no"
default: false
type: bool
description:
- Wait for the load balancer to become active before returning
@ -99,7 +99,7 @@ EXAMPLES = '''
port: 80
condition: enabled
type: primary
wait: yes
wait: true
credentials: /path/to/credentials
- name: Drain connections from a node
@ -108,7 +108,7 @@ EXAMPLES = '''
load_balancer_id: 71
node_id: 410
condition: draining
wait: yes
wait: true
credentials: /path/to/credentials
- name: Remove a node from the load balancer
@ -117,7 +117,7 @@ EXAMPLES = '''
load_balancer_id: 71
node_id: 410
state: absent
wait: yes
wait: true
credentials: /path/to/credentials
'''