{% extends "layouts/base.html" %} {% block title %} AWS Accounts {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}
Volt logo

All aws accounts

List all aws accounts

{% for aws_account in aws %} {% endfor %}
ID Account Name Squad Environment Default Region Role Arn Extra Variables
{{ aws_account.id }} {{ aws_account.squad }}_{{ aws_account.environment}} {{ aws_account.squad }} {{ aws_account.environment }} {{ aws_account.default_region }} {% if aws_account.role_arn %} {{ aws_account.role_arn }} {% else %} - {% endif %} {% if aws_account.extra_variables %} {% set truncated_variables = aws_account.extra_variables.keys() | join(', ') | truncate(30, True, '...') %} {{ truncated_variables }} {% else %} - {% endif %}
{% if "yoda" in current_user.role %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}