mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
make os_flavor return a top-level 'id' key
make os_flavor return a top-level 'id' key, much like other os_* resources.
This commit is contained in:
committed by
Matt Clay
parent
c1e081fcf6
commit
bdd73fdfd0
@@ -217,8 +217,13 @@ def main():
|
|||||||
rxtx_factor=module.params['rxtx_factor'],
|
rxtx_factor=module.params['rxtx_factor'],
|
||||||
is_public=module.params['is_public']
|
is_public=module.params['is_public']
|
||||||
)
|
)
|
||||||
module.exit_json(changed=True, flavor=flavor)
|
changed=True
|
||||||
module.exit_json(changed=False, flavor=flavor)
|
else:
|
||||||
|
changed=False
|
||||||
|
|
||||||
|
module.exit_json(changed=changed,
|
||||||
|
flavor=flavor,
|
||||||
|
id=flavor['id'])
|
||||||
|
|
||||||
elif state == 'absent':
|
elif state == 'absent':
|
||||||
if flavor:
|
if flavor:
|
||||||
|
|||||||
Reference in New Issue
Block a user