]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/profile/manifests/postgresql_master.pp
Refactor postgresql configuration
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / postgresql_master.pp
1 define profile::postgresql_master (
2 $letsencrypt_host = undef,
3 $backup_hosts = [],
4 ) {
5 profile::postgresql::ssl { "/var/lib/postgres":
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 }
10
11 $backup_hosts.each |$backup_host| {
12 profile::postgresql::replication { $backup_host:
13 handle_role => true,
14 handle_slot => true,
15 add_self_role => true,
16 }
17 }
18 }