puppet-prod/site/roles/manifests/infra/pki/certbot.pp
Ben Vincent 30ec8c1bb1 feat: enable retrieval of certbot certs
- refactor certbot
- add nginx to certbot hosts
2024-07-07 22:30:40 +10:00

12 lines
274 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::init
}
}