Policy Administration Point
{%- for root in pap_nodes recursive -%} {% if root.node_type == "policy set" %}
ID: {{ root.ID }}
Type: {{ root.node_type }}
Resolver: {{ root.resolver }}
Target: {{ root.target }}
Policies:
{{ loop(root.policies) }}
Policy Sets:
{{ loop(root.policy_sets) }}
{% elif root.node_type == "policy" %}
ID: {{ root.ID }}
Type: {{ root.node_type }}
Resolver: {{ root.resolver }}
Target: {{ root.target }}
Rules:
{{ loop(root.rules) }}
{% else %}
ID: {{ root.ID }}
Type: {{ root.node_type }}
Resolver: {{ root.resolver }}
Target: {{ root.target }}
Effect: {{ root.effect }}
Condition: {{ root.condition }}
{% endif %} {%- endfor -%}