Merge pull request #20259 from vexxhost/fix-os-user
Pop password from os_user params
This commit is contained in:
commit
c5d3aac822
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ def main():
|
|||
module.fail_json(msg='shade is required for this module')
|
||||
|
||||
name = module.params['name']
|
||||
password = module.params['password']
|
||||
password = module.params.pop('password')
|
||||
email = module.params['email']
|
||||
default_project = module.params['default_project']
|
||||
domain = module.params['domain']
|
||||
|
|
Loading…
Reference in a new issue