Audit Report

{% if check_results %}

Service: {{ service }}

{% for service_name, results in check_results.items() %}

Service Name: {{ service_name }}

{% if results|selectattr('type', 'equalto', 'SecurityCheck')|list %}

Security Checks

{% for result in results if result.type == "SecurityCheck" %} {% endfor %}
Check Result
{{ result.check_name }} {{ result.status }}
{% endif %} {% if results|selectattr('type', 'equalto', 'BestPractices')|list %}

Best Practices

{% for result in results if result.type == "BestPractices" %} {% endfor %}
Check Result
{{ result.check_name }} {{ result.status }}
{% endif %} {% endfor %} {% else %}

No Resources Found.

{% endif %}