vsphere_guest: when creating a guest, gather facts about it *before* disconnect
This commit is contained in:
parent
d5ed8381b6
commit
7f01600813
1 changed files with 2 additions and 1 deletions
|
@ -1093,9 +1093,10 @@ def create_vm(vsphere_client, module, esxi, resource_pool, cluster_name, guest,
|
||||||
# Power on the VM if it was requested
|
# Power on the VM if it was requested
|
||||||
power_state(vm, state, True)
|
power_state(vm, state, True)
|
||||||
|
|
||||||
|
vmfacts=gather_facts(vm)
|
||||||
vsphere_client.disconnect()
|
vsphere_client.disconnect()
|
||||||
module.exit_json(
|
module.exit_json(
|
||||||
ansible_facts=gather_facts(vm),
|
ansible_facts=vmfacts,
|
||||||
changed=True,
|
changed=True,
|
||||||
changes="Created VM %s" % guest)
|
changes="Created VM %s" % guest)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue