From da6f04e42ea073e9b423c283e3151721fc4af054 Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 30 Jan 2024 20:53:03 +0100 Subject: [PATCH] fix: database pg_hba --- ansible/group_vars/database/database | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/group_vars/database/database b/ansible/group_vars/database/database index f2a7ecf..96dad1b 100644 --- a/ansible/group_vars/database/database +++ b/ansible/group_vars/database/database @@ -32,5 +32,5 @@ postgresql_hba_entries: - {type: host, database: all, user: all, address: '::1/128', auth_method: md5} - {type: host, database: all, user: all, address: '::0/128', auth_method: md5} - {type: host, database: all, user: all, address: '0.0.0.0/0', auth_method: md5} - - {type: host, database: replication, user: repli, address:192.168.1.42/32, auth_method: md5} - - {type: host, database: replication, user: repli, address:192.168.1.40/32, auth_method: md5} + - {type: host, database: replication, user: repli, address: '192.168.1.42/32', auth_method: md5} + - {type: host, database: replication, user: repli, address: '192.168.1.40/32', auth_method: md5}