15 lines
455 B
YAML
15 lines
455 B
YAML
---
|
|
- name: Get Snapshot infos.
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
- name: Gather snapshot information about the virtual machine in the given vCenter
|
|
community.vmware.vmware_guest_snapshot_info:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
datacenter: "{{ datacenter_name }}"
|
|
uuid: "{{ vm_uuid }}"
|
|
delegate_to: localhost
|
|
register: snapshot_info |