{% extends "base.html" %} {% block content %} {% set iam_disabled = 'disabled' if iam_locked else '' %} {% if iam_locked %} {% endif %} {% if disclosed_secret %} {% endif %} {% if not iam_locked %}
Configuration Preview {{ config_summary.user_count }} users
{{ config_document }}

Secrets are masked above. Access {{ config_summary.path }} directly to view full credentials.

{% endif %}
Users

{{ users|length if not iam_locked else '?' }} user{{ 's' if (users|length if not iam_locked else 0) != 1 else '' }} configured

{% if iam_locked %}View only{% endif %}
{% if iam_locked %}
{% else %}
{% if users %}
{% for user in users %}
{{ user.display_name }}
{{ user.access_key }}
Bucket Permissions
{% for policy in user.policies %} {{ policy.bucket }} {% if '*' in policy.actions %} (full) {% else %} ({{ policy.actions|length }}) {% endif %} {% else %} No policies {% endfor %}
{% endfor %}
{% else %}
No users yet

Create your first IAM user to manage access to your storage.

{% endif %}
{% endif %}
{% endblock %} {% block extra_scripts %} {{ super() }} {% endblock %}