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

Secrets Requested

Your agent {{ agent.name }} has requested the following secrets

Back to Agent

Secure Encryption

All secrets are encrypted with AES-256-GCM before storage. These values will be securely stored and your agent will only see placeholder names, never the actual secret values.

{% if not has_requested_secrets %}

No Secrets Requested

This agent hasn't requested any secrets that need values.

{% else %}

Provide Secret Values

Enter the values for the secrets requested by {{ agent.name }}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
{% regroup requested_secret_rows by secret.domain_pattern as domain_groups %} {% for domain in domain_groups %}

{% if domain.grouper == "__gobii_env_var__" %} Environment Variables (Global Sandbox Scope) {% else %} Domain: {{ domain.grouper }} {% endif %}

{% for row in domain.list %}
{% if row.secret.description %}

{{ row.secret.description }}

{% endif %} {% if row.value_field.errors %}

{{ row.value_field.errors.0 }}

{% endif %}
{% csrf_token %}
Created {{ row.secret.created_at|date:"Y-m-d H:i" }}
{% endfor %}
{% endfor %}
{% if make_global_field.errors %}
{% for error in make_global_field.errors %}

{{ error }}

{% endfor %}
{% endif %}
Cancel
{% csrf_token %}
Bulk remove requests:
Select below
{% for secret in requested_secrets %} {% endfor %}
{% endif %}
{% endblock %}