puppet-prod/site/profiles/manifests/certbot/haproxy.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

10 lines
253 B
Puppet

# profiles::certbot::haproxy
class profiles::certbot::haproxy {
# export haproxy balancemember
profiles::haproxy::balancemember { "${facts['networking']['fqdn']}_8888":
service => 'be_letsencrypt',
ports => [8888],
options => []
}
}