Gather info vCenter settings
- This module can be used to gather information about vCenter settings.
Note
- All modules requires API write access and hence is not supported on a free ESXi license.
- name: "Gather info about vCenter settings"
community.vmware.vmware_vcenter_settings_info:
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
register: vcenter_settings_info
- name: "Gather some info from vCenter using the vSphere API output schema"
community.vmware.vmware_vcenter_settings_info:
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
schema: vsphere
properties:
- config.workflow.port
register: vcenter_settings_info_vsphere_api
Common return values are documented here, the following are the fields unique to this module:
- sky-joker (@sky-joker)