Merge pull request #1776 from rcarrillocruz/use_module_params_cloud_os_project
Fix instantiation of openstack_cloud object in os_project
This commit is contained in:
commit
6c43731d7c
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ def main():
|
||||||
|
|
||||||
name = module.params['name']
|
name = module.params['name']
|
||||||
description = module.params['description']
|
description = module.params['description']
|
||||||
domain = module.params['domain_id']
|
domain = module.params.pop('domain_id')
|
||||||
enabled = module.params['enabled']
|
enabled = module.params['enabled']
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue