Skip to content

Commit b2e365a

Browse files
authored
Merge pull request #1363 from ekohl/fix-docs
Fix puppet-strings documentation
2 parents 1915b16 + e463cda commit b2e365a

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

REFERENCE.md

+33-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
#### Private Classes
2525

26+
* `postgresql::backup::pg_dump`: "Provider" for pg_dump backup
2627
* `postgresql::dnfmodule`: Manage the DNF module
2728
* `postgresql::params`
2829
* `postgresql::repo`
@@ -858,6 +859,9 @@ The following parameters are available in the `postgresql::server` class:
858859
* [`roles`](#roles)
859860
* [`config_entries`](#config_entries)
860861
* [`pg_hba_rules`](#pg_hba_rules)
862+
* [`backup_enable`](#backup_enable)
863+
* [`backup_options`](#backup_options)
864+
* [`backup_provider`](#backup_provider)
861865
* [`version`](#version)
862866
* [`extra_systemd_config`](#extra_systemd_config)
863867
* [`manage_selinux`](#manage_selinux)
@@ -1286,6 +1290,30 @@ Specifies a hash from which to generate postgresql::server::pg_hba_rule resource
12861290

12871291
Default value: `{}`
12881292

1293+
##### <a name="backup_enable"></a>`backup_enable`
1294+
1295+
Data type: `Boolean`
1296+
1297+
Whether a backup job should be enabled.
1298+
1299+
Default value: `$postgresql::params::backup_enable`
1300+
1301+
##### <a name="backup_options"></a>`backup_options`
1302+
1303+
Data type: `Hash`
1304+
1305+
A hash of options that should be passed through to the backup provider.
1306+
1307+
Default value: `{}`
1308+
1309+
##### <a name="backup_provider"></a>`backup_provider`
1310+
1311+
Data type: `Enum['pg_dump']`
1312+
1313+
Specifies the backup provider to use.
1314+
1315+
Default value: `$postgresql::params::backup_provider`
1316+
12891317
##### <a name="version"></a>`version`
12901318

12911319
Data type: `Any`
@@ -1644,13 +1672,15 @@ The following parameters are available in the `postgresql::server::db` defined t
16441672

16451673
Data type: `Any`
16461674

1647-
User to create and assign access to the database upon creation. Mandatory.
1675+
User to assign access to the database upon creation (will be created if not defined elsewhere). Mandatory.
16481676

16491677
##### <a name="password"></a>`password`
16501678

1651-
Data type: `Variant[String, Sensitive[String]]`
1679+
Data type: `Optional[Variant[String, Sensitive[String]]]`
1680+
1681+
Sets the password for the created user (if a user is created).
16521682

1653-
Required Sets the password for the created user.
1683+
Default value: ``undef``
16541684

16551685
##### <a name="comment"></a>`comment`
16561686

manifests/server.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
# @param roles Specifies a hash from which to generate postgresql::server::role resources.
7878
# @param config_entries Specifies a hash from which to generate postgresql::server::config_entry resources.
7979
# @param pg_hba_rules Specifies a hash from which to generate postgresql::server::pg_hba_rule resources.
80-
80+
#
8181
# @param backup_enable Whether a backup job should be enabled.
8282
# @param backup_options A hash of options that should be passed through to the backup provider.
8383
# @param backup_provider Specifies the backup provider to use.

0 commit comments

Comments
 (0)