vmware_guest: do not use infra.vm_list
Update the functional tests of `vmware_guest` to use the `virtual_machines` data structure.
This commit is contained in:
parent
1c2c1c15d0
commit
140a8e53f3
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
username: "{{ vcenter_username }}"
|
||||
password: "{{ vcenter_password }}"
|
||||
name: new_vm_1
|
||||
template: "{{ infra.vm_list[0] }}"
|
||||
template: "{{ virtual_machines[0].name }}"
|
||||
guest_id: centos64Guest
|
||||
datacenter: "{{ dc1 }}"
|
||||
folder: D1/C1/F0
|
||||
|
@ -32,7 +32,7 @@
|
|||
username: "{{ vcenter_username }}"
|
||||
password: "{{ vcenter_password }}"
|
||||
name: new_vm_2
|
||||
template: "{{ infra.vm_list[0] }}"
|
||||
template: "{{ virtual_machines[0].name }}"
|
||||
guest_id: centos64Guest
|
||||
datacenter: "{{ dc1 }}"
|
||||
folder: D1/C1/F0
|
||||
|
|
Loading…
Reference in a new issue