soc-ops/global/overlay/etc/puppet/modules/soc/manifests/satosa.pp

7 lines
285 B
ObjectPascal
Raw Normal View History

2024-10-30 13:39:04 +01:00
class soc::satosa(
2024-10-30 13:52:27 +01:00
String $cert_name = $::facts['fqdn'],
2024-10-30 13:39:04 +01:00
) {
2024-10-30 13:52:27 +01:00
file { '/etc/satosa/https.key': ensure => link, target => "/etc/dehydrated/certs/${cert_name}.key" }
file { '/etc/satosa/https.crt': ensure => link, target => "/etc/dehydrated/certs/${cert_name}/fullchain.pem" }
2024-10-30 13:39:04 +01:00
}