diff options
Diffstat (limited to 'sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp')
-rw-r--r-- | sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp b/sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp index b0552cf..e168952 100644 --- a/sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp +++ b/sitemodules/profiles/templates/cacert_selfservice_api/config.yaml.epp @@ -9,7 +9,7 @@ String $notification_recipient_name, String $mail_host, Integer $mail_port, - Array[Hash[String][String]] $clients, + Array[Hash[String, Data]] $clients, String $log_directory | -%> --- @@ -25,8 +25,9 @@ mail_server: host: <%= $mail_host %> port: <%= $mail_port %> clients: -<%= $clients.each |$client| { -%> +<% $clients.each |$client| { -%> - id: <%= $client['client_id'] %> key: |- -<%= $client['key_lines'].each |$line| { %> <%= $line %><% } %> +<% $client['key_lines'].each |$line| { %> <%= $line %> +<% } -%> <% } -%> |