FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Unverified Commit f12a8077 authored by Jeff Ohrstrom's avatar Jeff Ohrstrom Committed by GitHub
Browse files

openidc config template to support complex configs (#212)


* openidc config template to support complex configs

* should also template key here

Co-authored-by: default avatarLeopold Talirz <leopold.talirz@gmail.com>

---------

Co-authored-by: default avatarLeopold Talirz <leopold.talirz@gmail.com>
parent beb85713
No related branches found
No related tags found
No related merge requests found
{% 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 %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment