mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 10:13:09 +00:00
Add 'mac_address' to the attributes returned from the vmware_vm_facts module (#26527)
* Add 'mac_address' to the attributes returned from the vmware_vm_facts module * fix pep8 issue
This commit is contained in:
@@ -68,12 +68,17 @@ def get_all_virtual_machines(content):
|
||||
_ip_address = summary.guest.ipAddress
|
||||
if _ip_address is None:
|
||||
_ip_address = ""
|
||||
_mac_address = []
|
||||
for dev in vm.config.hardware.device:
|
||||
if isinstance(dev, vim.vm.device.VirtualEthernetCard):
|
||||
_mac_address.append(dev.macAddress)
|
||||
|
||||
virtual_machine = {
|
||||
summary.config.name: {
|
||||
"guest_fullname": summary.config.guestFullName,
|
||||
"power_state": summary.runtime.powerState,
|
||||
"ip_address": _ip_address,
|
||||
"mac_address": _mac_address,
|
||||
"uuid": summary.config.uuid
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user