VMware: Add example of specific folder in VM fact gathering (#66613)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
1befb52321
commit
b620134f9c
1 changed files with 9 additions and 0 deletions
|
@ -146,6 +146,15 @@ EXAMPLES = r'''
|
||||||
- "{{ vm_info.virtual_machines | json_query(query) }}"
|
- "{{ vm_info.virtual_machines | json_query(query) }}"
|
||||||
vars:
|
vars:
|
||||||
query: "[?guest_name=='DC0_H0_VM0']"
|
query: "[?guest_name=='DC0_H0_VM0']"
|
||||||
|
|
||||||
|
- name: Gather all VMs from a specific folder
|
||||||
|
vmware_vm_info:
|
||||||
|
hostname: '{{ vcenter_hostname }}'
|
||||||
|
username: '{{ vcenter_username }}'
|
||||||
|
password: '{{ vcenter_password }}'
|
||||||
|
folder: "/Asia-Datacenter1/vm/prod"
|
||||||
|
delegate_to: localhost
|
||||||
|
register: vm_info
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = r'''
|
RETURN = r'''
|
||||||
|
|
Loading…
Reference in a new issue