You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# @param pg_hba_conf_defaults Disables the defaults supplied with the module for pg_hba.conf if set to false. This is useful if you want to override the defaults. Be sure that your changes align with the rest of the module, as some access is required to perform some operations, such as basic psql operations.
37
37
#
@@ -47,7 +47,6 @@
47
47
# @param log_line_prefix Overrides the default PostgreSQL log prefix.
48
48
#
49
49
# @param user Overrides the default PostgreSQL super user and owner of PostgreSQL related files in the file system.
50
-
# Default value: 'postgres'.
51
50
# @param group Overrides the default postgres user group to be used for related files in the file system.
52
51
#
53
52
# @param version The version of PostgreSQL to install and manage.
@@ -68,9 +67,9 @@
68
67
#
69
68
# @param timezone Sets the default timezone of the postgresql server. The postgresql built-in default is taking the systems timezone information.
70
69
#
71
-
# @param manage_pg_hba_conf
72
-
# @param manage_pg_ident_conf
73
-
# @param manage_recovery_conf
70
+
# @param manage_pg_hba_conf Allow Puppet to manage the pg_hba.conf file.
71
+
# @param manage_pg_ident_conf Allow Puppet to manage the pg_ident.conf file.
72
+
# @param manage_recovery_conf Allow Puppet to manage the recovery.conf file.
74
73
#
75
74
# @param manage_package_repo Sets up official PostgreSQL repositories on your host if set to true.
76
75
# @param module_workdir Specifies working directory under which the psql command should be executed. May need to specify if '/tmp' is on volume mounted with noexec option.
Copy file name to clipboardExpand all lines: manifests/server/extension.pp
+1-2
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,7 @@
13
13
# @param ensure Specifies whether to activate or deactivate the extension. Valid options: 'present' or 'absent'.
14
14
# @param package_name Specifies a package to install prior to activating the extension.
15
15
# @param package_ensure Overrides default package deletion behavior. By default, the package specified with package_name is installed when the extension is activated and removed when the extension is deactivated. To override this behavior, set the ensure value for the package.
16
-
# @param connect_settings
17
-
#
16
+
# @param connect_settings Specifies a hash of environment variables used when connecting to a remote server.
Copy file name to clipboardExpand all lines: manifests/server/pg_hba_rule.pp
-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@
11
11
# @param order Sets an order for placing the rule in pg_hba.conf. This can be either a string or an integer. If it is an integer, it will be converted to a string by zero-padding it to three digits. E.g. 42 will be zero-padded to the string '042'. The pg_hba_rule fragments are sorted using the alpha sorting order. Default value: 150.
12
12
# @param target Provides the target for the rule, and is generally an internal only property. Use with caution.
13
13
# @param postgresql_version Manages pg_hba.conf without managing the entire PostgreSQL instance.
Copy file name to clipboardExpand all lines: manifests/server/pg_ident_rule.pp
-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@
6
6
# @param description Sets a longer description for this rule if required. This description is placed in the comments above the rule in pg_ident.conf. Default value: 'none'.
7
7
# @param order Defines an order for placing the mapping in pg_ident.conf. Default value: 150.
8
8
# @param target Provides the target for the rule and is generally an internal only property. Use with caution.
0 commit comments