{% extends "base.html" %} {% block title %}Runbooks — Infrastructure Design Canvas — ICDEV{% endblock %} {% block content %} ← Infrastructure Canvas

📖 Infrastructure Runbooks

Operational runbooks for infra incidents — provisioning failures, capacity breaches, cloud drift, patch rollbacks — NIST CM-3 / CP-2 / SI-2
{% if runbooks %} {% for rb in runbooks %}
{% if rb.execution_count %}
▶ {{ rb.execution_count }}x run
{% endif %}
{{ rb.title }}
{{ rb.category }} {{ rb.severity }}
{% if rb.trigger_condition %}
Trigger:{{ rb.trigger_condition }}
{% endif %}
{{ rb.description }}
{% if rb.nist_controls %}
NIST: {{ rb.nist_controls|join(', ') }}
{% endif %}
{% if rb.owner %}👤 {{ rb.owner }}{% endif %} {% if rb.estimated_duration_min %}⏱ ~{{ rb.estimated_duration_min }} min{% endif %} {% if rb.steps %}{{ rb.steps|length }} steps{% endif %} {% if rb.last_executed_at %}Last run: {{ rb.last_executed_at[:10] }}{% endif %}
{% if rb.tags %}
{% for tag in rb.tags %}{{ tag }}{% endfor %}
{% endif %}
{% endfor %} {% else %}

No runbooks yet

Create operational runbooks for common infrastructure incidents like provisioning failures, capacity breaches, cloud drift, and patch rollbacks.

{% endif %}
{% endblock %}