{% extends "_layout.html" %} {% block title %}{{ provider.display_name }}{% endblock %} {% block content %}

{{ provider.display_name }}

{{ auth_type_label }} · {{ api_url }}
{% if provider.auth_type.value == "oauth2" %}
{{ provider_management_label }}
{% if show_provider_client_details %}
Client ID
{{ client_id or 'Required during setup' }}
Client Secret
{% if has_client_secret %}••••••••••••••••{% else %}Required during setup{% endif %}
Redirect URI
{{ redirect_uri }}
{% else %}

This deployment manages the OAuth application for {{ provider.display_name }}.

{% endif %}
Replace provider credentials

Changing these credentials revokes existing connections for this provider. Continue only if you intend to reconnect them.

Endpoints
Authorization URL
{{ auth_url or '—' }}
Token URL
{{ token_url or '—' }}
{% endif %}
Existing connections
{% if grouped_connections %} {% for group in grouped_connections %}
{{ group.vault_label }}
{% for item in group.connections %}
{{ item.connection_name }}
{{ item.identity }}
{{ item.status }}
{% endfor %}
{% endfor %} {% else %}

No connections for this provider yet.

{% endif %}
Connection name

Default already exists for this provider. Choose a new connection name to continue.

{% endblock %}