xenserver_facts – get facts reported on xenserver

From Get docs
Ansible/docs/2.7/modules/xenserver facts module


xenserver_facts – get facts reported on xenserver

New in version 2.0.


Synopsis

  • Reads data out of XenAPI, can be used instead of multiple xe commands.

Examples

- name: Gather facts from xenserver
  xenserver_facts:

- name: Print running VMs
  debug:
    msg: "{{ item }}"
  with_items: "{{ xs_vms.keys() }}"
  when: xs_vms[item]['power_state'] == "Running"

# Which will print:
#
# TASK: [Print running VMs] ***********************************************************
# skipping: [10.13.0.22] => (item=CentOS 4.7 (32-bit))
# ok: [10.13.0.22] => (item=Control domain on host: 10.0.13.22) => {
#     "item": "Control domain on host: 10.0.13.22",
#     "msg": "Control domain on host: 10.0.13.22"
# }

Status

Authors

  • Andy Hill (@andyhky)
  • Tim Rupp
  • Robin Lee (@cheese)

Hint

If you notice any issues in this documentation you can edit this document to improve it.


© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.7/modules/xenserver_facts_module.html