aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/postgresql_master.pp
blob: 3de4f2283054da1e1254786f75406e7668f8452c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
define profile::postgresql_master (
  $letsencrypt_host = undef,
  $backup_hosts     = [],
) {
  profile::postgresql::ssl { "/var/lib/postgres/data":
    cert                => "/etc/letsencrypt/live/$letsencrypt_host/cert.pem",
    key                 => "/etc/letsencrypt/live/$letsencrypt_host/privkey.pem",
    require             => Letsencrypt::Certonly[$letsencrypt_host],
    handle_config_entry => true,
  }

  $backup_hosts.each |$backup_host| {
    profile::postgresql::replication { $backup_host:
      handle_config => true,
      handle_role   => true,
      handle_slot   => true,
      add_self_role => true,
    }
  }
}