Add 'uuid' to the attributes returned from the vmware_vm_facts module. (#23773)

pull/23982/merge
Patrick Chauncey 8 years ago committed by jctanner
parent b95fefd8f5
commit 0d5fe8fd94

@ -33,6 +33,7 @@ version_added: 2.0
author: "Joseph Callen (@jcpowermac)"
notes:
- Tested on vSphere 5.5
- Tested on vSphere 6.5
requirements:
- "python >= 2.6"
- PyVmomi
@ -72,7 +73,8 @@ def get_all_virtual_machines(content):
summary.config.name: {
"guest_fullname": summary.config.guestFullName,
"power_state": summary.runtime.powerState,
"ip_address": _ip_address
"ip_address": _ip_address,
"uuid": summary.config.uuid
}
}

Loading…
Cancel
Save