VMware: properly format the Jinja2 of the vmware example (#54526)

This commit is contained in:
Gonéri Le Bouder 2019-03-28 12:45:33 -04:00 committed by Abhijeet Kasurde
parent fc3064471b
commit ee10551c7d
4 changed files with 10 additions and 10 deletions

View file

@ -73,7 +73,7 @@ EXAMPLES = '''
password: "{{ vcenter_password }}"
validate_certs: no
datacenter: "{{ datacenter }}"
folder: /"{{datacenter}}"/vm
folder: "/{{datacenter}}/vm"
name: "{{ vm_name }}"
delegate_to: localhost
register: vm_facts
@ -96,7 +96,7 @@ EXAMPLES = '''
password: "{{ vcenter_password }}"
validate_certs: no
name: test-vm
folder: /"{{datacenter}}"/vm
folder: "/{{datacenter}}/vm"
delegate_to: localhost
register: facts
'''