main.yml 535 B

12345678910111213
  1. ---
  2. - set_fact:
  3. etcd_host_int_map: "{{ lookup('template', '../templates/host_int_map.j2') | from_yaml }}"
  4. - fail:
  5. msg: "Interface {{ item.value.etcd_interface }} not found on host {{ item.key }}"
  6. when: "'etcd_interface' in item.value and 'interface' not in item.value"
  7. with_dict: etcd_host_int_map
  8. - fail:
  9. msg: IPv4 address not found for {{ item.value.interface.device }} on host {{ item.key }}
  10. when: "'ipv4' not in item.value.interface or 'address' not in item.value.interface.ipv4"
  11. with_dict: etcd_host_int_map