ansible/roles/postgresql/templates/postgresql/pg_hba.conf.j2
2021-11-28 11:07:13 +01:00

7 lines
327 B
Django/Jinja

{{ ansible_managed | comment }}
# TYPE DATABASE USER ADDRESS METHOD
local all postgres peer map=map_local
{% for host in postgresql.hosts | default([]) %}
host "{{ host.database }}" "{{ host.user }}" {{ host.net }} {{ host.method }}
{% endfor %}