From d492544714b1ec041599e5ae5224f220a0d271ef Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Tue, 14 Oct 2014 02:24:58 -0400 Subject: [PATCH] Added user, tenant and password to module parameters declaration -- these parameters are already handled by the implementation --- lib/ansible/modules/cloud/keystone_user.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ansible/modules/cloud/keystone_user.py b/lib/ansible/modules/cloud/keystone_user.py index 5b412ca8008..4af254bfe6d 100644 --- a/lib/ansible/modules/cloud/keystone_user.py +++ b/lib/ansible/modules/cloud/keystone_user.py @@ -291,6 +291,9 @@ def main(): argument_spec.update(dict( tenant_description=dict(required=False), email=dict(required=False), + user=dict(required=False), + tenant=dict(required=False), + password=dict(required=False), role=dict(required=False), state=dict(default='present', choices=['present', 'absent']), endpoint=dict(required=False,