lab-ansible/roles/postgresql/templates/pg_hba.conf.j2

13 lines
581 B
Plaintext
Raw Normal View History

2023-12-29 18:07:08 +00:00
{# code: language=ansible-jinja #}
2023-12-23 16:41:57 +00:00
# THIS FILE IS MANAGED BY ANSIBLE
2024-03-02 21:36:05 +00:00
# TYPE DATABASE USER ADDRESS METHOD
local all postgres peer
local all all scram-sha-256
host all all 127.0.0.1/32 scram-sha-256
host all all ::1/128 scram-sha-256
{% for _, app in databases|dictsort %}
host {{ app.db }} {{ app.user }} {{ internal_subnet }} scram-sha-256
2023-12-23 16:41:57 +00:00
{% endfor %}