- name: Install fail2ban package: name: fail2ban become: true - name: fail2ban filter template: src: files/haproxy-fail2ban-filter.conf dest: /etc/fail2ban/filter.d/haproxy-basic.conf become: true register: fail2ban_filter - name: fail2ban jail template: src: files/haproxy-fail2ban-jail.conf dest: /etc/fail2ban/jail.d/haproxy.conf become: true register: fail2ban_jail - name: Restart fail2ban service: name: fail2ban state: restarted become: true when: fail2ban_filter.changed or fail2ban_jail.changed