Merge pull request 'Allow root to connect using peer authentication' (#52) from bdd_fix_auth into master
continuous-integration/drone/push Build is failing Details

Reviewed-on: Aurore/ansible#52
pull/54/head
jeltz 3 years ago
commit 4c8550bfe1

@ -1,19 +1,7 @@
{{ 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
local all postgres peer map=map_local
{% for host in postgresql_hosts %}
host "{{ host.database }}" "{{ host.user }}" {{ host.net }} {{ host.method }}
{% endfor %}

@ -1,4 +1,5 @@
{{ ansible_managed | comment }}
# MAPNAME SYSTEM-USERNAME PG-USERNAME
map_root root postgress
map_local root postgres
map_local postgres postgres

Loading…
Cancel
Save