haproxy/tasks/lua.yaml
2023-02-08 01:36:25 +03:00

14 lines
304 B
YAML

---
- name: Create lua dir for HAProxy
file:
path: "{{ haproxy_lua_path }}"
state: directory
- name: Write lua files for HAProxy
copy:
dest: "{{ haproxy_lua_path }}/{{ item.key }}"
content: "{{ item.value }}"
loop: "{{ haproxy_lua | dict2items }}"
notify:
- Reload HAProxy