|
23 | 23 |
|
24 | 24 | #### Private Classes
|
25 | 25 |
|
| 26 | +* `postgresql::backup::pg_dump`: "Provider" for pg_dump backup |
26 | 27 | * `postgresql::dnfmodule`: Manage the DNF module
|
27 | 28 | * `postgresql::params`
|
28 | 29 | * `postgresql::repo`
|
@@ -858,6 +859,9 @@ The following parameters are available in the `postgresql::server` class:
|
858 | 859 | * [`roles`](#roles)
|
859 | 860 | * [`config_entries`](#config_entries)
|
860 | 861 | * [`pg_hba_rules`](#pg_hba_rules)
|
| 862 | +* [`backup_enable`](#backup_enable) |
| 863 | +* [`backup_options`](#backup_options) |
| 864 | +* [`backup_provider`](#backup_provider) |
861 | 865 | * [`version`](#version)
|
862 | 866 | * [`extra_systemd_config`](#extra_systemd_config)
|
863 | 867 | * [`manage_selinux`](#manage_selinux)
|
@@ -1286,6 +1290,30 @@ Specifies a hash from which to generate postgresql::server::pg_hba_rule resource
|
1286 | 1290 |
|
1287 | 1291 | Default value: `{}`
|
1288 | 1292 |
|
| 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 | + |
1289 | 1317 | ##### <a name="version"></a>`version`
|
1290 | 1318 |
|
1291 | 1319 | Data type: `Any`
|
@@ -1644,13 +1672,15 @@ The following parameters are available in the `postgresql::server::db` defined t
|
1644 | 1672 |
|
1645 | 1673 | Data type: `Any`
|
1646 | 1674 |
|
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. |
1648 | 1676 |
|
1649 | 1677 | ##### <a name="password"></a>`password`
|
1650 | 1678 |
|
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). |
1652 | 1682 |
|
1653 |
| -Required Sets the password for the created user. |
| 1683 | +Default value: ``undef`` |
1654 | 1684 |
|
1655 | 1685 | ##### <a name="comment"></a>`comment`
|
1656 | 1686 |
|
|
0 commit comments