{% extends "base.html" %} {% block title %}{{ design.name }} — Infrastructure Canvas — ICDEV{% endblock %} {% block global_banner %}{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner(design) }}
Palette
Snippets
{% for catname, catdata in objects.items() %} {% if catdata is mapping %}
{{ catname | replace('_', ' ') | title }}
{% for csp, items in catdata.items() %} {% for obj in items %}
{{ obj.icon }} {{ obj.label }}
{% endfor %} {% endfor %}
{% elif catdata is iterable %}
{{ catname | replace('_', ' ') | title }}
{% for obj in catdata %}
{{ obj.icon }} {{ obj.label }}
{% endfor %}
{% endif %} {% endfor %}

Loading snippets...

100%
{% set wf_canvas_id = "idc" %} {% set wf_context_label = design.name %} {% set wf_design_id = design.id %} {% include 'includes/workflow_trigger_btn.html' %}
IDC v1.0 | {{ design.classification or 'CUI' }} | {{ design.id }}
Results
⚙ Generate IaC — Infrastructure as Code
Terraform (HCL)

        
Ansible (YAML)

        
{% endblock %}