Step {{ current_wizard_step }}: Credentials

{% if errors %}
{% for e in errors %}
{{ e }}
{% endfor %}
{% endif %}
{% for key, val in data.items() %} {% if key not in ('_step', 'resource_type', 'csrf_token') %} {% endif %} {% endfor %} {% if resource_type == 'aws_account' %}

Create IAM User

Run these commands in AWS CloudShell or your terminal:

aws iam create-user --user-name supavision-monitor
aws iam attach-user-policy --user-name supavision-monitor --policy-arn arn:aws:iam::aws:policy/ReadOnlyAccess
aws iam create-access-key --user-name supavision-monitor

Paste the credentials from the output below.

Supavision uses read-only credentials. No AWS resources are modified.

{% endif %} {% if resource_type == 'github_org' %}

Create a Fine-Grained Personal Access Token

Go to GitHub Settings → Developer settings → Fine-grained tokens

Required permissions:

  • Repository access: All repositories (read)
  • Organization: Members (read), Administration (read)
  • Repository: Actions (read), Security events (read)

Supavision uses read-only access. No repositories or settings are modified.

{% endif %}