{% extends "base.html" %} {% block title %}Studio: {{ profile.metadata.name }} — {{ app_name }}{% endblock %} {% block breadcrumbs %}
Profile Hub / {{ profile.metadata.name }}
{% endblock %} {% block head %} {% endblock %} {% block content %}

Blueprint Studio

v{{ profile.metadata.version }} {% set tier = profile.hardening.profile_tier | default('cis-l1') %} {% if tier == 'cis-l1' %} CIS L1 {% elif tier == 'cis-l2' %} CIS L2 {% elif tier == 'stig' %} STIG {% else %} {{ tier }} {% endif %} {% set badge = profile.metadata.source_badge | default('Local') %} {% if badge == 'Official' %} Official {% elif badge == 'Community' %} Community {% elif badge == 'Private' %} Private {% endif %}

{{ profile.compliance.benchmark }} • {{ profile.target.os }}

{% if profile.metadata.description %}

{{ profile.metadata.description }}

{% endif %}

CIS Controls

Toggle to create exceptions

Interactive
{% for rule_id, control in controls.items() %} {% set is_enabled = control if control is boolean else control.enabled %} {% set justification = '' if control is boolean else control.justification %} {% else %} {% endfor %}
No controls defined in this profile.

profile.yaml

{% include "partials/blueprint_yaml.html" %}
{% endblock %}