Guest User

Untitled

a guest
Jul 31st, 2018
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. - name: Add vmkernel adapter to host on specified portgroup
  2. local_action:
  3. module: vcenter_vmk
  4. hostname: "{{ vcenter_ip}}"
  5. username: "{{ vcenter_username }}"
  6. password: "{{ vcenter_password }}"
  7. validate_certs: False
  8. esxi_hostname: "{{ item.value }}"
  9. portgroup_name: vsan
  10. dhcp: False
  11. ip_address: 192.168.103.20
  12. subnet_mask: 255.255.255.0
  13. service_type: vsan
  14. mtu: 1500
  15. state: present
  16. with_dict: "{{ EdgeNodes | default({}) }}"
Add Comment
Please, Sign In to add comment