mirror of
https://gitea.0xace.cc/ansible-galaxy/haproxy.git
synced 2024-11-25 00:16:39 +00:00
9 lines
195 B
YAML
9 lines
195 B
YAML
---
|
|
- name: Write maps for HAProxy
|
|
copy:
|
|
dest: "{{ haproxy_path }}/{{ item.key }}"
|
|
content: "{{ item.value }}"
|
|
loop: "{{ haproxy_map | dict2items }}"
|
|
notify:
|
|
- Reload HAProxy
|