mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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')
|
module.fail_json(msg='shade is required for this module')
|
||||||
|
|
||||||
name = module.params['name']
|
name = module.params['name']
|
||||||
password = module.params['password']
|
password = module.params.pop('password')
|
||||||
email = module.params['email']
|
email = module.params['email']
|
||||||
default_project = module.params['default_project']
|
default_project = module.params['default_project']
|
||||||
domain = module.params['domain']
|
domain = module.params['domain']
|
||||||
|
|
Loading…
Reference in a new issue