mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Adjust booleans in cloud modules. (#5155)
This commit is contained in:
parent
19ce50f6b9
commit
3a08903e1c
51 changed files with 177 additions and 177 deletions
|
@ -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
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue