{% extends "base.html" %} {% block title %}Snapshots - AWS Inventory Browser{% endblock %} {% block content %}

Snapshots

{% for snapshot in snapshots %}

{{ snapshot.name }}

{% if snapshot.name == active_snapshot %} Active {% endif %}
{{ snapshot.resource_count | format_number }} resources
{{ snapshot.created_at }}
{{ snapshot.regions | join(', ') if snapshot.regions else 'N/A' }}
View {% if snapshot.name != active_snapshot %} {% endif %}
{% else %}

No snapshots

Create your first snapshot with the CLI:

awsinv snapshot create my-baseline --regions us-east-1
{% endfor %}
{% endblock %}