return information about created subnet

make os_subnet behave like os_network in terms of returning information
about the created resource.  With this commit, os_subnet will return the
created subnet in `subnet` and the subnet id in `id`.
pull/18777/head
Lars Kellogg-Stedman 9 years ago committed by Matt Clay
parent 14455f4acc
commit 70bd95b4f0

@ -302,7 +302,9 @@ def main():
changed = True
else:
changed = False
module.exit_json(changed=changed)
module.exit_json(changed=changed,
subnet=subnet,
id=subnet['id'])
elif state == 'absent':
if not subnet:

Loading…
Cancel
Save