2015-08-24 17:51:57 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2015, Joseph Callen <jcallen () csc.com>
|
2017-07-29 15:05:38 +00:00
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2015-08-24 17:51:57 +00:00
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2017-08-09 13:41:30 +00:00
|
|
|
DOCUMENTATION = r'''
|
2015-08-24 17:51:57 +00:00
|
|
|
---
|
|
|
|
module: vmware_vm_facts
|
|
|
|
short_description: Return basic facts pertaining to a vSphere virtual machine guest
|
|
|
|
description:
|
2017-08-09 13:41:30 +00:00
|
|
|
- Return basic facts pertaining to a vSphere virtual machine guest.
|
|
|
|
version_added: '2.0'
|
|
|
|
author:
|
|
|
|
- Joseph Callen (@jcpowermac)
|
2015-08-24 17:51:57 +00:00
|
|
|
notes:
|
2017-08-09 13:41:30 +00:00
|
|
|
- Tested on vSphere 5.5 and vSphere 6.5
|
2015-08-24 17:51:57 +00:00
|
|
|
requirements:
|
2017-08-09 13:41:30 +00:00
|
|
|
- python >= 2.6
|
|
|
|
- PyVmomi
|
2016-01-12 17:00:22 +00:00
|
|
|
extends_documentation_fragment: vmware.documentation
|
2015-08-24 17:51:57 +00:00
|
|
|
'''
|
|
|
|
|
2017-08-09 13:41:30 +00:00
|
|
|
EXAMPLES = r'''
|
2015-08-24 17:51:57 +00:00
|
|
|
- name: Gather all registered virtual machines
|
2017-08-09 13:41:30 +00:00
|
|
|
vmware_vm_facts:
|
2015-08-24 17:51:57 +00:00
|
|
|
hostname: esxi_or_vcenter_ip_or_hostname
|
|
|
|
username: username
|
|
|
|
password: password
|
2017-08-09 13:41:30 +00:00
|
|
|
delegate_to: localhost
|
|
|
|
register: vmfacts
|
|
|
|
|
|
|
|
- debug:
|
|
|
|
var: vmfacts.virtual_machines
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
virtual_machines:
|
|
|
|
description: dictionary of virtual machines and their facts
|
|
|
|
returned: success
|
|
|
|
type: dict
|
2015-08-24 17:51:57 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
try:
|
|
|
|
from pyVmomi import vim, vmodl
|
|
|
|
HAS_PYVMOMI = True
|
|
|
|
except ImportError:
|
|
|
|
HAS_PYVMOMI = False
|
|
|
|
|
2017-07-29 15:05:38 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.vmware import HAS_PYVMOMI, connect_to_api, get_all_objs, vmware_argument_spec
|
|
|
|
|
2015-08-24 17:51:57 +00:00
|
|
|
|
|
|
|
# https://github.com/vmware/pyvmomi-community-samples/blob/master/samples/getallvms.py
|
|
|
|
def get_all_virtual_machines(content):
|
|
|
|
virtual_machines = get_all_objs(content, [vim.VirtualMachine])
|
|
|
|
_virtual_machines = {}
|
|
|
|
|
|
|
|
for vm in virtual_machines:
|
|
|
|
_ip_address = ""
|
|
|
|
summary = vm.summary
|
|
|
|
if summary.guest is not None:
|
|
|
|
_ip_address = summary.guest.ipAddress
|
|
|
|
if _ip_address is None:
|
|
|
|
_ip_address = ""
|
2017-07-14 14:25:20 +00:00
|
|
|
_mac_address = []
|
2017-10-12 14:32:06 +00:00
|
|
|
if vm.config is not None:
|
|
|
|
for dev in vm.config.hardware.device:
|
|
|
|
if isinstance(dev, vim.vm.device.VirtualEthernetCard):
|
|
|
|
_mac_address.append(dev.macAddress)
|
2015-08-24 17:51:57 +00:00
|
|
|
|
|
|
|
virtual_machine = {
|
|
|
|
summary.config.name: {
|
|
|
|
"guest_fullname": summary.config.guestFullName,
|
|
|
|
"power_state": summary.runtime.powerState,
|
2017-04-28 20:28:49 +00:00
|
|
|
"ip_address": _ip_address,
|
2017-07-14 14:25:20 +00:00
|
|
|
"mac_address": _mac_address,
|
2017-04-28 20:28:49 +00:00
|
|
|
"uuid": summary.config.uuid
|
2015-08-24 17:51:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_virtual_machines.update(virtual_machine)
|
|
|
|
return _virtual_machines
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
argument_spec = vmware_argument_spec()
|
|
|
|
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=False)
|
|
|
|
|
|
|
|
if not HAS_PYVMOMI:
|
|
|
|
module.fail_json(msg='pyvmomi is required for this module')
|
|
|
|
|
|
|
|
try:
|
|
|
|
content = connect_to_api(module)
|
|
|
|
_virtual_machines = get_all_virtual_machines(content)
|
|
|
|
module.exit_json(changed=False, virtual_machines=_virtual_machines)
|
|
|
|
except vmodl.RuntimeFault as runtime_fault:
|
|
|
|
module.fail_json(msg=runtime_fault.msg)
|
|
|
|
except vmodl.MethodFault as method_fault:
|
|
|
|
module.fail_json(msg=method_fault.msg)
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|