From 14f2adecc270d3a81aa460ad2b92c61c93225d49 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Thu, 22 Aug 2024 15:21:09 -0400 Subject: [PATCH] Default the system password_encryption to scram-sha-256 --- .../api/v1alpha1/helpers/miq-components/postgresql_conf.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manageiq-operator/api/v1alpha1/helpers/miq-components/postgresql_conf.go b/manageiq-operator/api/v1alpha1/helpers/miq-components/postgresql_conf.go index 47625040d..aa329da72 100644 --- a/manageiq-operator/api/v1alpha1/helpers/miq-components/postgresql_conf.go +++ b/manageiq-operator/api/v1alpha1/helpers/miq-components/postgresql_conf.go @@ -6,10 +6,16 @@ func postgresqlOverrideConf() string { # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ +# - TCP settings - + tcp_keepalives_count = 9 tcp_keepalives_idle = 3 tcp_keepalives_interval = 75 +# - Authentication - + +password_encryption = scram-sha-256 + #------------------------------------------------------------------------------ # RESOURCE USAGE (except WAL) #------------------------------------------------------------------------------