{% extends "base.html" %} {% block title %}Infrastructure Design Canvas — ICDEV{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_badge %}

Infrastructure Design Canvas

Visual infrastructure designer — 200+ compute, storage, database, serverless, AI/ML, and security services across AWS, Azure, GCP, OCI, IBM, and on-premises.

+ New Infrastructure Design Templates {% set wf_canvas_id = 'idc' %} {% set wf_context_label = 'Infrastructure Canvas' %} {% include 'includes/workflow_trigger_btn.html' %}
{% if templates %}
Templates — Start from a Pre-Built Design
{% for t in templates %}

{{ t.name }}

{{ t.description or '' }}

{{ t.category or 'general' }}
{% endfor %}
{% endif %}
Your Designs {% if designs %}{% endif %}
{% for d in designs %}

{{ d.name }}

{{ d.description or 'No description' }}

{{ design_classification_badge(d) }} Updated: {{ d.updated_at[:10] if d.updated_at else '—' }}
{% else %}

No infrastructure designs yet. Click + New Infrastructure Design to get started.

{% endfor %}
{% set iqe_canvas = "infra" %} {% set iqe_api_route = "/infra/api/iqe-query" %} {% set iqe_title = "IQE Query — Infrastructure Resources" %} {% set iqe_examples = [ {"label": "All resources", "query": "foreach r in infra.resources select r.resource_name, r.csp, r.region, r.classification"}, {"label": "CUI resources over $500/mo", "query": "foreach r in infra.resources where r.classification == \"CUI\" where r.cost_per_month > 500 select r.resource_name, r.csp, r.cost_per_month"}, {"label": "AWS resources", "query": "foreach r in infra.resources where r.csp == \"aws\" select r.resource_name, r.region, r.resource_type"}, {"label": "All snapshots", "query": "foreach s in infra.snapshots select s.snapshot_id, s.csp, s.resource_count, s.taken_at"} ] %} {% include "includes/iqe_query_widget.html" %} {% endblock %} {% block scripts %} {% endblock %}