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
Check |
Result |
{% for result in results if result.type == "SecurityCheck" %}
{{ result.check_name }} |
{{ result.status }} |
{% endfor %}
{% endif %}
{% if results|selectattr('type', 'equalto', 'BestPractices')|list %}
Best Practices
Check |
Result |
{% for result in results if result.type == "BestPractices" %}
{{ result.check_name }} |
{{ result.status }} |
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No Resources Found.
{% endif %}