{% for finding in t["results"] %} {% if finding["ManagedBy"] == "Customer" %}
{% include 'analysis/finding-card/names.html' %}

{{ finding["PolicyDocument"] | tojson(indent=4) }}

{{ finding["Actions"] | tojson(indent=4) }}
            
{% if finding["AssumableByComputeService"]|length > 0 %}

{{ finding["AssumeRolePolicyDocument"]  | tojson(indent=4) }}
              
{% endif %} {% if finding["PrivilegeEscalation"]|length > 0 or finding["DataExfiltrationActions"]|length > 0 or finding["PermissionsManagementActions"]|length > 0 or finding["AssumableByComputeService"]|length > 0 %}
{% include 'analysis/finding-card/details.html' %}
{% endif %}
{% endif %} {% endfor %}