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

@ -58,7 +58,7 @@ options:
- If C(False), the module will fail under these conditions.
- This is intended to prevent accidental expansion of a VLAN's network (since this operation is not reversible).
type: bool
default: 'no'
default: false
'''
EXAMPLES = '''
@ -72,7 +72,7 @@ EXAMPLES = '''
private_ipv4_base_address: 192.168.23.0
private_ipv4_prefix_size: 24
state: present
wait: yes
wait: true
- name: Read / get VLAN details
community.general.dimensiondata_vlan:
@ -81,7 +81,7 @@ EXAMPLES = '''
network_domain: test_network
name: my_vlan1
state: readonly
wait: yes
wait: true
- name: Delete a VLAN
community.general.dimensiondata_vlan:
@ -90,7 +90,7 @@ EXAMPLES = '''
network_domain: test_network
name: my_vlan_1
state: absent
wait: yes
wait: true
'''
RETURN = '''