From 5185b62431b45b8840d1814af4f84d89beb5a346 Mon Sep 17 00:00:00 2001 From: Patrik Lundin Date: Fri, 11 Oct 2024 11:47:44 +0200 Subject: [PATCH] Syntax fixes --- global/overlay/etc/puppet/modules/cdn/manifests/cache.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp b/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp index f6aaf8a..d4507d5 100644 --- a/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp +++ b/global/overlay/etc/puppet/modules/cdn/manifests/cache.pp @@ -86,13 +86,13 @@ class cdn::cache( mode => '0640', } - concat::fragment { "${customer}.fullchain-${$cache_secrets['customers'][$customer]['host']}": + concat::fragment { "${customer}-fullchain-${cache_secrets['customers'][$customer]['host']}": target => $combined_pem, source => "/etc/letsencrypt/live/${cache_secrets['customers'][${customer}]['host']}/fullchain.pem", order => '01' } - concat::fragment { "${customer}-privkey-${$cache_secrets['customers'][$customer]['host']}": + concat::fragment { "${customer}-privkey-${cache_secrets['customers'][$customer]['host']}": target => $combined_pem, source => "/etc/letsencrypt/live/${cache_secrets['customers'][${customer}]['host']}/privkey.pem", order => '02'