diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-06-28 02:38:10 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-06-28 02:38:55 +0200 |
commit | 436cae5ebfd889b1bf625b757939a57842b564da (patch) | |
tree | 2854f2f1da35262c839a25d17447a760272fc3f1 /modules/profile/manifests/postgresql | |
parent | d2f031ece106ed2dc37283b194edfa94718a6306 (diff) | |
download | Puppet-436cae5ebfd889b1bf625b757939a57842b564da.tar.gz Puppet-436cae5ebfd889b1bf625b757939a57842b564da.tar.zst Puppet-436cae5ebfd889b1bf625b757939a57842b564da.zip |
Rename file
Diffstat (limited to 'modules/profile/manifests/postgresql')
-rw-r--r-- | modules/profile/manifests/postgresql/master.pp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/profile/manifests/postgresql/master.pp b/modules/profile/manifests/postgresql/master.pp new file mode 100644 index 0000000..969905f --- /dev/null +++ b/modules/profile/manifests/postgresql/master.pp | |||
@@ -0,0 +1,20 @@ | |||
1 | define profile::postgresql::master ( | ||
2 | $letsencrypt_host = undef, | ||
3 | $backup_hosts = [], | ||
4 | ) { | ||
5 | profile::postgresql::ssl { "/var/lib/postgres/data": | ||
6 | cert => "/etc/letsencrypt/live/$letsencrypt_host/cert.pem", | ||
7 | key => "/etc/letsencrypt/live/$letsencrypt_host/privkey.pem", | ||
8 | require => Letsencrypt::Certonly[$letsencrypt_host], | ||
9 | handle_config_entry => true, | ||
10 | } | ||
11 | |||
12 | $backup_hosts.each |$backup_host| { | ||
13 | profile::postgresql::replication { $backup_host: | ||
14 | handle_config => true, | ||
15 | handle_role => true, | ||
16 | handle_slot => true, | ||
17 | add_self_role => true, | ||
18 | } | ||
19 | } | ||
20 | } | ||