Skip to content
Snippets Groups Projects
Commit e3ebabc3 authored by Matthew Mosesohn's avatar Matthew Mosesohn
Browse files

switch /etc/hosts to use blockinfile

parent d0867c8d
No related branches found
No related tags found
No related merge requests found
---
- name: Hosts | populate inventory into hosts file
lineinfile:
blockinfile:
dest: /etc/hosts
regexp: "^{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item].ansible_default_ipv4.address)) }} {{ item }}$"
line: "{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item].ansible_default_ipv4.address)) }} {{ item }}"
block: |-
{% for item in groups['all'] -%}
{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item].ansible_default_ipv4.address)) }} {{ item }}
{% endfor %}
state: present
create: yes
backup: yes
when: hostvars[item].ansible_default_ipv4.address is defined
with_items: "{{ groups['all'] }}"
marker: "# Ansible inventory hosts {mark}"
- name: Hosts | populate kubernetes loadbalancer address into hosts file
lineinfile:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment