3
0
Arne Teuke
2025-10-02 14:14:30 +02:00
parent ee67aaa26c
commit 87d838f8be
5 changed files with 38 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
# @param [String] pl_server_crt the name of the server cert
# @param [String] pl_server_key the name of the server key
# @param [String] pl_ca_crt the name of the CA crt
# @param [Boolean] pl_manage_roles Whether to manage roles
# @summary Class contains all parameters for the postgresql_cd module.
##############################################################################
class postgresql_cd::params (
@@ -43,6 +44,7 @@ class postgresql_cd::params (
String $pl_server_crt = 'server.crt',
String $pl_server_key = 'server.key',
String $pl_ca_crt = 'root.crt',
Boolean $pl_manage_roles = true,
) {
$fqdn = $facts['networking']['fqdn']