module_utils/rax: Small parameter cleanup (#24664)
Nothing really fancy. - Removing boolean choices - Use path-type for credentials
This commit is contained in:
parent
a3a0742ce5
commit
d07f18fbb9
1 changed files with 2 additions and 2 deletions
|
@ -245,14 +245,14 @@ def rax_argument_spec():
|
|||
return dict(
|
||||
api_key=dict(type='str', aliases=['password'], no_log=True),
|
||||
auth_endpoint=dict(type='str'),
|
||||
credentials=dict(type='str', aliases=['creds_file']),
|
||||
credentials=dict(type='path', aliases=['creds_file']),
|
||||
env=dict(type='str'),
|
||||
identity_type=dict(type='str', default='rackspace'),
|
||||
region=dict(type='str'),
|
||||
tenant_id=dict(type='str'),
|
||||
tenant_name=dict(type='str'),
|
||||
username=dict(type='str'),
|
||||
verify_ssl=dict(choices=BOOLEANS, type='bool'),
|
||||
verify_ssl=dict(type='bool'),
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue