module_utils/rax: Small parameter cleanup (#24664)

Nothing really fancy.

- Removing boolean choices
- Use path-type for credentials
pull/21856/merge
Dag Wieers 7 years ago committed by Ryan Brown
parent a3a0742ce5
commit d07f18fbb9

@ -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…
Cancel
Save