{% 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 %}
{% 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 %}

Create New Snapshot

Capture current state of AWS resources

Leave empty to auto-generate (snapshot-YYYYMMDD-HHMMSS)

Use inventory filters (include/exclude tags)

Comma-separated list (default: us-east-1)

Status:

Rename Snapshot

{% endblock %} {% block scripts %} {% endblock %}