ansible-role-sso/templates/shibboleth-attribute-map.in...

8 lines
393 B
Plaintext
Raw Normal View History

<!-- {{ ansible_managed }} -->
2022-07-27 17:58:22 +02:00
{% for item in saml_attributes %}
2022-08-03 21:06:02 +02:00
<Attribute {% for key,value in item.items() %}{% if value is not mapping %}{{ key }}="{{ value }}" {% endif %}{% endfor %}>
{% if item.attributeDecoder is defined %}
<AttributeDecoder {% for key,value in item.attributeDecoder.items() %}{{ key }}="{{ value }}" {% endfor %}/>
{% endif %}
</Attribute>
2022-07-27 17:58:22 +02:00
{% endfor %}