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

📋 Infrastructure SOPs

Standard Operating Procedures — change management, capacity planning, cloud account onboarding — NIST CM-3 / CP-2 / AC-2
{% if sops %} {% for sop in sops %}
v{{ sop.version }}
{{ sop.title }}
{{ sop.category|replace('_',' ') }} {{ sop.status|replace('_',' ') }}
{{ sop.description }}
{% if sop.nist_controls %}
NIST: {{ sop.nist_controls|join(', ') }}
{% endif %}
{% if sop.owner %}👤 {{ sop.owner }}{% endif %} {% if sop.steps %}{{ sop.steps|length }} steps{% endif %} {% if sop.approved_at %}Approved {{ sop.approved_at[:10] }}{% endif %}
{% if sop.tags %}
{% for tag in sop.tags %}{{ tag }}{% endfor %}
{% endif %}
{% endfor %} {% else %}

No SOPs yet

Create Standard Operating Procedures for infrastructure change management, capacity planning reviews, and cloud account onboarding.

{% endif %}
{% endblock %}