{% extends "base.html" %} {% block title %}Sraosha — Connections{% endblock %} {% block breadcrumbs %}

Connections

Encrypted credentials for contracts

{% endblock %} {% block content %}
New Connection
{% if connections %}
{% for conn in connections %} {% endfor %}
Name Usage Type Host / Project Database Auth Created Actions
{{ conn.name }}
{% if conn.description %}

{{ conn.description }}

{% endif %}
{{ usage_by_name[conn.name] | default(0) }} refs {{ conn.server_type }} {% if conn.host %}{{ conn.host }}{% if conn.port %}:{{ conn.port }}{% endif %} {% elif conn.project %}{{ conn.project }} {% elif conn.path %}{{ conn.path }} {% elif conn.account %}{{ conn.account }} {% else %}—{% endif %} {{ conn.database or conn.dataset or "—" }} {% if conn.password_encrypted %} password {% elif conn.token_encrypted %} token {% elif conn.service_account_json_encrypted %} service account {% else %} none {% endif %} {{ conn.created_at.strftime('%Y-%m-%d') }}
Edit
{% else %}

No connections yet

Create a connection to store database credentials securely.

New Connection
{% endif %}
{% endblock %}