{% extends "base.html" %} {% block title %}sharktopus — credentials{% endblock %} {% block content %}

Credentials

Read-only view of what sharktopus can see for each provider. Nothing is transmitted to us. Rotate or clear from the provider's own console or via the CLI (sharktopus --setup {provider}). Don't have credentials yet? See ACCOUNT_SETUP.md or the help page for sign-up links.

{% for c in creds %}

{{ c.name }}

{% for k, v in c.info.items() %}
{{ k }}
{% if v is mapping %}
{{ v }}
{% else %} {{ v }} {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}