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

Edit Secret

Update the value for secret "{{ secret_key }}" in {{ agent.name }}

Back to Secrets

Updating Secret Value

This will replace the existing value for "{{ secret_key }}". The new value will be encrypted with AES-256-GCM before storage.

Update Secret

Edit the name, description, and value for this secret

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{{ 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 }}

{{ secret_key }}

This key is auto-generated from the name and will update if you change the name

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

{{ form.value.help_text }}

Cancel
{% endblock %}