Skip to content

Commit 5eb1690

Browse files
authored
Merge pull request #1584 from ekohl/globally-configurable-password-encryption
Add a global password_encryption parameter
2 parents b88c8a6 + 43c21af commit 5eb1690

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

manifests/globals.pp

+5
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@
8181
# @param timezone
8282
# Sets the default timezone of the postgresql server. The postgresql built-in default is taking the systems timezone information.
8383
#
84+
# @param password_encryption
85+
# Specify the type of encryption set for the password.
86+
# Defaults to scram-sha-256 for PostgreSQL >= 14, otherwise md5.
87+
#
8488
# @param manage_pg_hba_conf Allow Puppet to manage the pg_hba.conf file.
8589
# @param manage_pg_ident_conf Allow Puppet to manage the pg_ident.conf file.
8690
# @param manage_recovery_conf Allow Puppet to manage the recovery.conf file.
@@ -159,6 +163,7 @@
159163
Optional[String[1]] $locale = undef,
160164
Optional[Boolean] $data_checksums = undef,
161165
Optional[String[1]] $timezone = undef,
166+
Optional[Postgresql::Pg_password_encryption] $password_encryption = undef,
162167

163168
Optional[Boolean] $manage_pg_hba_conf = undef,
164169
Optional[Boolean] $manage_pg_ident_conf = undef,

manifests/params.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
$manage_selinux = pick($manage_selinux, false)
2626
$package_ensure = 'present'
2727
$module_workdir = pick($module_workdir,'/tmp')
28-
$password_encryption = versioncmp($version, '14') ? { -1 => 'md5', default => 'scram-sha-256' }
28+
$password_encryption = pick($password_encryption, versioncmp($version, '14') ? { -1 => 'md5', default => 'scram-sha-256' })
2929
$extra_systemd_config = undef
3030
$manage_datadir = true
3131
$manage_logdir = true

spec/functions/postgresql_default_spec.rb

+14
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,19 @@ class { 'postgresql::server':
3030
# parameter in globals.pp only
3131
it { is_expected.to run.with_params('default_connect_settings').and_return({}) }
3232

33+
it { is_expected.to run.with_params('password_encryption').and_return('md5') }
34+
3335
it { is_expected.to run.with_params('a_parameter_that_does_not_exist').and_raise_error(Puppet::ParseError, %r{pick\(\): must receive at least one non empty value}) }
36+
37+
context 'with overridden values' do
38+
let(:pre_condition) do
39+
<<~PUPPET
40+
class { 'postgresql::globals':
41+
password_encryption => 'scram-sha-256',
42+
}
43+
PUPPET
44+
end
45+
46+
it { is_expected.to run.with_params('password_encryption').and_return('scram-sha-256') }
47+
end
3448
end

0 commit comments

Comments
 (0)