1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Ensure os_project checks the right domain (#2519)

This commit is contained in:
Alvaro Aleman 2016-07-25 20:05:58 +02:00 committed by Matt Clay
parent ec0fff49ea
commit 54d40fe557

View file

@ -178,7 +178,11 @@ def main():
pass
cloud = shade.openstack_cloud(**module.params)
project = cloud.get_project(name)
if domain:
project = cloud.get_project(name, domain_id=domain)
else:
project = cloud.get_project(name)
if module.check_mode:
module.exit_json(changed=_system_state_change(module, project))