- name: Copy configuration files loop: - internal.conf - redxen-dns.conf - unbound.conf template: follow: yes src: '{{ item }}.j2' dest: "/etc/unbound/{{ item }}" notify: Run service actions tags: - unbound - config - name: Set unbound as default dns replace: path: /etc/resolv.conf regexp: "^nameserver.*$" replace: "nameserver 127.0.0.1" tags: - unbound - config