Reserved Instances Report


{% for service in report %}

Below is the report on {{ service }} reserved instances:

{% if report[service]['unused_reservations'] %} {% for type, count in report[service]['unused_reservations'].items() %} {% endfor %}
Used/Unused Count Type AZ Details
UNUSED RESERVATION! {{ count }} {{ type[0] }} {{ type[1] }} {% if reserve_expiry %} Expires in {{ reserve_expiry[type]|string }} days. {% endif %}
{% else %}

You have no unused {{ service }} reservations.

{% endif %} {% if report[service]['unreserved_instances'] %} {% for type, count in report[service]['unreserved_instances'].items() %} {% endfor %}
Used/Unused Count Type AZ Details
NOT RESERVED! {{ count }} {{ type[0] }} {{ type[1] }} {% if instance_ids %} {{ ", ".join(instance_ids[type]) }} {% endif %}
{% else %}

You have no unreserved {{ service }} instances.

{% endif %}

({{ report[service]['qty_running_instances'] }}) running on-demand {{ service }} instances

({{ report[service]['qty_reserved_instances'] }}) {{ service }} reservations

({{ report[service]['qty_unreserved_instances'] }}) Unreserved {{ service }} reservations

{% endfor %}