mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -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
|
@ -89,7 +89,7 @@ options:
|
|||
hard:
|
||||
description:
|
||||
- Reboot, power-off or terminate instances C(hard)
|
||||
default: no
|
||||
default: false
|
||||
type: bool
|
||||
wait:
|
||||
description:
|
||||
|
@ -98,7 +98,7 @@ options:
|
|||
- doesn't mean that you will be able to SSH on that machine only that
|
||||
- boot process have started on that instance, see 'wait_for' example for
|
||||
- details.
|
||||
default: yes
|
||||
default: true
|
||||
type: bool
|
||||
wait_timeout:
|
||||
description:
|
||||
|
@ -202,7 +202,7 @@ options:
|
|||
persistent:
|
||||
description:
|
||||
- Create a private persistent copy of the template plus any image defined in DISK, and instantiate that copy.
|
||||
default: NO
|
||||
default: false
|
||||
type: bool
|
||||
version_added: '0.2.0'
|
||||
datastore_id:
|
||||
|
@ -251,7 +251,7 @@ EXAMPLES = '''
|
|||
- name: Deploy a new VM as persistent
|
||||
community.general.one_vm:
|
||||
template_id: 90
|
||||
persistent: yes
|
||||
persistent: true
|
||||
|
||||
- name: Change VM's permissions to 640
|
||||
community.general.one_vm:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue