Ansible playbook fails to deploy Virtual Machine: Can't Find Folder
How can I deploy a Virtual machine without any Folders within the Cluster ?
---
- name: Running Create Virtual Machine Playbook
hosts: localhost
gather_facts: false
connection: local
tasks:
- name: Virtual Machine customization
vmware_guest:
validate_certs: no
folder: "{{ }}"
hostname: "{{ }}"
username: "{{ }}"
password: "{{ }}"
cluster : "{{ }}"
customization_spec: "{{ }}"
name: "{{ }}"
template: "{{ }}"
state: poweredon
disk:
- datastore: "{{ }}"
networks:
- name: "{{ }}"
device_type: e1000e
customization:
autologon: yes
hardware:
memory_mb: 2048
num_cpus: 1
delegate_to: localhost
# wait_for_ip_address: True