Fix openstack auth type
Otherwise auth type defaults to 'str' and shade fails
This commit is contained in:
parent
4b953c4b16
commit
c3b30d251f
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ def openstack_full_argument_spec(**kwargs):
|
|||
spec = dict(
|
||||
cloud=dict(default=None),
|
||||
auth_type=dict(default=None),
|
||||
auth=dict(default=None, no_log=True),
|
||||
auth=dict(default=None, type='dict', no_log=True),
|
||||
region_name=dict(default=None),
|
||||
availability_zone=dict(default=None),
|
||||
verify=dict(default=True, aliases=['validate_certs']),
|
||||
|
|
Loading…
Reference in a new issue