mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 10:51:24 -07:00
Align verify parameter with validate_certs
The rest of ansible uses validate_certs, so make that the main documented parameter. However, leave verify as an alias since that's the passthrough value to the underlying libraries.
This commit is contained in:
parent
90ca386555
commit
87c99b4675
3 changed files with 5 additions and 3 deletions
|
@ -77,7 +77,7 @@ def openstack_full_argument_spec(**kwargs):
|
|||
auth=dict(default=None),
|
||||
region_name=dict(default=None),
|
||||
availability_zone=dict(default=None),
|
||||
verify=dict(default=True),
|
||||
verify=dict(default=True, aliases=['validate_certs']),
|
||||
cacert=dict(default=None),
|
||||
cert=dict(default=None),
|
||||
key=dict(default=None),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue