6d645c127f
The vmware test roles do a lot of similar operation to prepare the environment. This role will be used to reduce the amount of duplicated code. The role can prepare an environment on a baremetal environment, this in addition to vcsim. Original PR: https://github.com/ansible/ansible/pull/54882
10 lines
322 B
YAML
10 lines
322 B
YAML
---
|
|
- name: Add a VMware vSwitchs
|
|
vmware_vswitch:
|
|
validate_certs: no
|
|
hostname: '{{ hostvars[item].ansible_host }}'
|
|
username: '{{ hostvars[item].ansible_user }}'
|
|
password: '{{ hostvars[item].ansible_password }}'
|
|
switch_name: "{{ switch1 }}"
|
|
state: present
|
|
with_items: "{{ groups['esxi-lab'] }}"
|