{% extends "base.html" %} {% block title %}Add Secret - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Add New Secret

Store an encrypted credential for use in scripts

{% csrf_token %}
{{ form.key }} {% if form.key.help_text %}

{{ form.key.help_text }}

{% endif %} {% if form.key.errors %}

{{ form.key.errors.0 }}

{% endif %}
{{ form.value }} {% if form.value.help_text %}

{{ form.value.help_text }}

{% endif %} {% if form.value.errors %}

{{ form.value.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.help_text %}

{{ form.description.help_text }}

{% endif %} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}

Security

  • Secret values are encrypted at rest using Fernet
  • Full values are never displayed after creation
  • Secrets are injected as environment variables at runtime
Cancel
{% endblock %}