This repository has been archived on 2020-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-haproxy/tasks/main.yml

13 lines
291 B
YAML

- name: Copy HAProxy files
loop:
- { src: 'haproxy.conf.j2', dest: '/etc/haproxy/haproxy.cfg' }
template:
follow: yes
src: "{{ item.src }}"
dest: "{{ item.dest }}"
notify: Run service actions
tags:
- update
- haproxy
- configs