paulbsd-salt/states/haproxy/config.sls
Paul Lecuq 958c6bc0be
All checks were successful
continuous-integration/drone/push Build is passing
updated haproxy state
2022-10-23 16:37:53 +02:00

13 lines
387 B
Plaintext

---
{%- from "haproxy/map.jinja" import haproxy with context %}
haproxy-config:
file.managed:
- name: {{ haproxy.config.dir }}/{{ haproxy.config.configfile }}
- source: salt://haproxy/templates/haproxy.cfg.j2
- user: {{ haproxy.config.user }}
- group: {{ haproxy.config.group }}
- mode: "0600"
- template: jinja
- watch_in:
- service: haproxy-service