19 lines
793 B
Django/Jinja
19 lines
793 B
Django/Jinja
{{ ansible_managed | comment }}
|
|
|
|
# TYPE DATABASE USER ADDRESS METHOD
|
|
|
|
# DO NOT DISABLE!
|
|
# If you change this first entry you will need to make sure that the
|
|
# database superuser can access the database using some other method.
|
|
# Noninteractive access to all databases is required during automatic
|
|
# maintenance (custom daily cronjobs, replication, and similar tasks).
|
|
#
|
|
# Database administrative login by Unix domain socket
|
|
local all postgres peer map=map_root
|
|
|
|
# "local" is for Unix domain socket connections only
|
|
local all all peer
|
|
|
|
{% for host in postgresql_hosts %}
|
|
host "{{ host.database }}" "{{ host.user }}" {{ host.net }} {{ host.method }}
|
|
{% endfor %}
|