puppet-prod/site/roles/manifests/infra/pki/certbot.pp
Ben Vincent 9db714d02f feat: manage certbot
- add haproxy backend for be_letsencrypt
- manage the certbot role/profile
- create define to export certificate requests
2024-07-07 21:21:50 +10:00

12 lines
276 B
Puppet

# a role to deploy a certbot server
class roles::infra::pki::certbot {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
include profiles::certbot::server
}
}