|
24 | 24 | # @param hash Specify the hash method for pg password
|
25 | 25 | # @param salt Specify the salt use for the scram-sha-256 encoding password (default username)
|
26 | 26 | define postgresql::server::role (
|
27 |
| - Boolean $update_password = true, |
28 |
| - Variant[Boolean, String, Sensitive[String]] $password_hash = false, |
29 |
| - Boolean $createdb = false, |
30 |
| - Boolean $createrole = false, |
31 |
| - String[1] $db = $postgresql::server::default_database, |
32 |
| - Optional[Stdlib::Port] $port = undef, |
33 |
| - Boolean $login = true, |
34 |
| - Boolean $inherit = true, |
35 |
| - Boolean $superuser = false, |
36 |
| - Boolean $replication = false, |
37 |
| - String[1] $connection_limit = '-1', |
38 |
| - String[1] $username = $title, |
39 |
| - Hash $connect_settings = $postgresql::server::default_connect_settings, |
40 |
| - String[1] $psql_user = $postgresql::server::user, |
41 |
| - String[1] $psql_group = $postgresql::server::group, |
42 |
| - Variant[String[1], Stdlib::Absolutepath] $psql_path = $postgresql::server::psql_path, |
43 |
| - String[1] $module_workdir = $postgresql::server::module_workdir, |
44 |
| - Enum['present', 'absent'] $ensure = 'present', |
45 |
| - Optional[Enum['md5', 'scram-sha-256']] $hash = undef, |
46 |
| - Optional[Variant[String[1], Integer]] $salt = undef, |
| 27 | + Boolean $update_password = true, |
| 28 | + Variant[Boolean, String, Sensitive[String]] $password_hash = false, |
| 29 | + Boolean $createdb = false, |
| 30 | + Boolean $createrole = false, |
| 31 | + String[1] $db = $postgresql::server::default_database, |
| 32 | + Optional[Stdlib::Port] $port = undef, |
| 33 | + Boolean $login = true, |
| 34 | + Boolean $inherit = true, |
| 35 | + Boolean $superuser = false, |
| 36 | + Boolean $replication = false, |
| 37 | + String[1] $connection_limit = '-1', |
| 38 | + String[1] $username = $title, |
| 39 | + Hash $connect_settings = $postgresql::server::default_connect_settings, |
| 40 | + String[1] $psql_user = $postgresql::server::user, |
| 41 | + String[1] $psql_group = $postgresql::server::group, |
| 42 | + Stdlib::Absolutepath $psql_path = $postgresql::server::psql_path, |
| 43 | + String[1] $module_workdir = $postgresql::server::module_workdir, |
| 44 | + Enum['present', 'absent'] $ensure = 'present', |
| 45 | + Optional[Enum['md5', 'scram-sha-256']] $hash = undef, |
| 46 | + Optional[Variant[String[1], Integer]] $salt = undef, |
47 | 47 | ) {
|
48 | 48 | $password_hash_unsensitive = if $password_hash =~ Sensitive[String] {
|
49 | 49 | $password_hash.unwrap
|
|
0 commit comments