Passwords are still md5.

This commit is contained in:
Andrea Dell'Amico 2021-04-06 14:35:54 +02:00
parent 1d447c464a
commit ad879841f4
1 changed files with 4 additions and 2 deletions

View File

@ -29,7 +29,8 @@
contype: host
users: '{{ psql_streaming_replication_user }}'
address: '{{ item }}'
method: 'scram-sha-256'
#method: 'scram-sha-256'
method: 'md5'
state: present
loop: '{{ psql_streaming_replication_hosts }}'
notify: Reload postgresql
@ -44,7 +45,8 @@
contype: host
users: '{{ psql_streaming_replication_user }}'
address: '{{ item }}'
method: 'scram-sha-256'
#method: 'scram-sha-256'
method: 'md5'
state: present
loop: '{{ psql_streaming_replication_hosts }}'
notify: Reload postgresql