diff --git a/templates/auth_openidc.conf.j2 b/templates/auth_openidc.conf.j2 index 92f1d88..1c11ae7 100644 --- a/templates/auth_openidc.conf.j2 +++ b/templates/auth_openidc.conf.j2 @@ -1,4 +1,8 @@ {% set _auth_openidc = default_auth_openidc | combine(ood_auth_openidc) %} {% for key, value in _auth_openidc.items() %} +{% if value is iterable and (value is not string and value is not mapping) %} +{{ key }} {{ value | map('quote') | join(' ') }} +{% else %} {{ key }} {{ value | quote }} +{% endif %} {% endfor %}