2022-08-16 15:28:29 +02:00
|
|
|
<!-- {{ 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 %}
|