3
0
Arne Teuke
2025-10-02 15:11:29 +02:00
parent 87d838f8be
commit ccdffca708
7 changed files with 57 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
# @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
# @param [Boolean] pl_manage_databases Whether to manage databases
# @summary Class contains all parameters for the postgresql_cd module.
##############################################################################
class postgresql_cd::params (
@@ -45,6 +46,7 @@ class postgresql_cd::params (
String $pl_server_key = 'server.key',
String $pl_ca_crt = 'root.crt',
Boolean $pl_manage_roles = true,
Boolean $pl_manage_databases = true,
) {
$fqdn = $facts['networking']['fqdn']