--- - name: Set etc_hosts_etc_hosts_file if running in Docker ansible.builtin.set_fact: etc_hosts_etc_hosts_file: "{{ etc_hosts_etc_hosts_file }}.docker" when: - ansible_virtualization_type | regex_search("docker|podman|container") - name: Deploy {{ etc_hosts_etc_hosts_file }} ansible.builtin.template: src: templates/etc_hosts.j2 dest: "{{ etc_hosts_etc_hosts_file }}" mode: "0644" ...