{% extends "console_page.html" %} {% block console_content %}

Add Secret

Add a new encrypted secret for {{ agent.name }}

Back to Secrets

Secure Encryption

This secret will be encrypted with AES-256-GCM before storage. Your agent can access this value using the secret key like x_api_key in its tasks.

Secret Details

Enter the key and value for your new secret

{% csrf_token %}
{{ form.secret_type }} {% if form.secret_type.errors %}
{% for error in form.secret_type.errors %}{{ error }}{% endfor %}
{% endif %}

{{ form.secret_type.help_text }}

{{ form.domain }} {% if form.domain.errors %}
{% for error in form.domain.errors %}{{ error }}{% endfor %}
{% endif %}

{{ form.domain.help_text }}

{{ form.name }} {% if form.name.errors %}
{% for error in form.name.errors %}{{ error }}{% endfor %}
{% endif %}

{{ form.name.help_text }}

{{ form.description }} {% if form.description.errors %}
{% for error in form.description.errors %}{{ error }}{% endfor %}
{% endif %}

{{ form.description.help_text }}

{{ form.value }} {% if form.value.errors %}
{% for error in form.value.errors %}{{ error }}{% endfor %}
{% endif %}

{{ form.value.help_text }}

Cancel
{% endblock %}