From 17b044127431fba7eacc61c87ad71b404cff394d Mon Sep 17 00:00:00 2001
From: Patrik Holmqvist <pahol@sunet.se>
Date: Wed, 5 Feb 2025 16:04:01 +0100
Subject: [PATCH] Fix indentation for parameters in proxy class, SC-2522

---
 .../etc/puppet/modules/eid/manifests/proxy.pp       | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/global/overlay/etc/puppet/modules/eid/manifests/proxy.pp b/global/overlay/etc/puppet/modules/eid/manifests/proxy.pp
index 28a8da87..f19d1578 100644
--- a/global/overlay/etc/puppet/modules/eid/manifests/proxy.pp
+++ b/global/overlay/etc/puppet/modules/eid/manifests/proxy.pp
@@ -4,14 +4,15 @@
 # @param service_name         Name of the service, for example qa.proxy.eidas.swedenconnect.se
 # @param server_fqdn          The FQDN of the server. (referenced in compose file)
 # @param proxy_directory      The directory where all proxy related config and files are stored. (referenced in compose file)
+# @param spring_config_param  Used as parameter name in compose file
 # @param contry               Used while creating directories and referenced in compsose file
 class eid::proxy (
-  String                     $version = '',
-  String                     $service_name = '',
-  String                     $server_fqdn = $facts['networking']['fqdn'],
-  String                     $proxy_directory = '/opt/eidas-proxy',
-  String                     $spring_config_param = 'SPRING_CONFIG_ADDITIONAL_LOCATION',
-  String                     $country = 'se',
+  String $version = '',
+  String $service_name = '',
+  String $server_fqdn = $facts['networking']['fqdn'],
+  String $proxy_directory = '/opt/eidas-proxy',
+  String $spring_config_param = 'SPRING_CONFIG_ADDITIONAL_LOCATION',
+  String $country = 'se',
 ) {
 
   $pkcs11_pin = safe_hiera('pkcs11_pin')