{% extends "base.html" %} {% block title %}Credential Audit - DocuElevate{% endblock %} {% block content %}

Credential Audit

Overview of all sensitive credentials used by DocuElevate. No secret values are shown here — only whether each credential is configured and where it comes from.

{{ total }}
Total Credentials
{{ configured_count }}
Configured
{{ unconfigured_count }}
Not Configured

Legend

DB Value stored in the database (encrypted at rest; overrides environment variable) ENV Value from environment variable or .env file Missing Credential not set — integration will not work Restart required when this credential is rotated
{% for category, creds in categories.items() %}

{{ category }}

{{ creds | selectattr('configured') | list | length }} / {{ creds | length }} configured
{% for cred in creds %} {% endfor %}
Credential Description Status Source Action
{{ cred.key }} {% if cred.restart_required %} {% endif %}
{{ cred.description }} {% if cred.configured %} Configured {% else %} Missing {% endif %} {% if cred.source == 'db' %} DB {% elif cred.source == 'env' %} ENV {% else %} {% endif %}
{% endfor %}
Manage Settings Raw JSON (API)
{% endblock %}