Fix docs-args mismatch in modules

Change-Id: I51105f11565c5ff33b04add36259c8703af11240
This commit is contained in:
Sagi Shnaidman
2020-12-08 12:06:42 +02:00
parent c914c42799
commit e504d807de
4 changed files with 2 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ options:
- Whether or not SSL API requests should be verified. - Whether or not SSL API requests should be verified.
- Before Ansible 2.3 this defaulted to C(yes). - Before Ansible 2.3 this defaulted to C(yes).
type: bool type: bool
default: no default: False
aliases: [ verify ] aliases: [ verify ]
ca_cert: ca_cert:
description: description:

View File

@@ -120,7 +120,7 @@ def openstack_full_argument_spec(**kwargs):
auth=dict(default=None, type='dict', no_log=True), auth=dict(default=None, type='dict', no_log=True),
region_name=dict(default=None), region_name=dict(default=None),
availability_zone=dict(default=None), availability_zone=dict(default=None),
validate_certs=dict(default=None, type='bool', aliases=['verify']), validate_certs=dict(default=False, type='bool', aliases=['verify']),
ca_cert=dict(default=None, aliases=['cacert']), ca_cert=dict(default=None, aliases=['cacert']),
client_cert=dict(default=None, aliases=['cert']), client_cert=dict(default=None, aliases=['cert']),
client_key=dict(default=None, no_log=True, aliases=['key']), client_key=dict(default=None, no_log=True, aliases=['key']),

View File

@@ -120,7 +120,6 @@ options:
re-assert the password field. re-assert the password field.
- C(skip_update_of_driver_password) is deprecated alias and will be removed in openstack.cloud 2.0.0. - C(skip_update_of_driver_password) is deprecated alias and will be removed in openstack.cloud 2.0.0.
type: bool type: bool
default: 'no'
aliases: aliases:
- skip_update_of_driver_password - skip_update_of_driver_password
requirements: requirements:

View File

@@ -16,12 +16,10 @@ options:
description: description:
- Whether to provide additional information about volumes - Whether to provide additional information about volumes
type: bool type: bool
default: false
all_projects: all_projects:
description: description:
- Whether return the volumes in all projects - Whether return the volumes in all projects
type: bool type: bool
default: false
name: name:
description: description:
- Name of the volume as a string. - Name of the volume as a string.