Skip to main content
Reference

Credentials & dashboard

Get your admin token and open your Rivet dashboard.

After Rivet confirms your deployment is ready, run these commands from your extracted bundle’s root directory. The same commands work for AWS and Google Cloud.

Requirements

Steps

Get your admin token

python3 scripts/access.py admin-token
# Expected: your admin token

Copy the token for sign-in. It is read directly from your cloud’s secret manager, not saved to Terraform state or a file.

Open your Rivet dashboard

python3 scripts/access.py dashboard
# Expected: a local tunnel and your browser opening http://127.0.0.1:6420/ui

The helper opens your browser and forwards a local port to your deployment. Sign in with the admin token, and keep the terminal open until you’re finished; Ctrl+C closes the tunnel.

Regions

To select a region, add --region:

python3 scripts/access.py admin-token --region us-east-1
# Expected: the selected region's admin token

python3 scripts/access.py dashboard --region us-east-1
# Expected: a local tunnel to the selected region's dashboard

Manual access

Get your admin token

  1. Find the admin-secret reference in your Terraform deployment outputs
  2. Open that secret in AWS Secrets Manager or Google Cloud Secret Manager
  3. Copy its value—the admin token, not the operator token used in RIVET_BYOC_OPERATOR_TOKEN

Open the dashboard

  1. Open your deployment endpoint with /ui appended, or create a local tunnel:

    Configure kubectl access to your cluster, then run:

    kubectl --context "<cluster-context>" -n rivet \
      port-forward --address 127.0.0.1 service/rivet-engine 6420:6420
    # Expected: Forwarding from 127.0.0.1:6420 -> 6420
    

    Replace <cluster-context> with your Kubernetes context and rivet with your kubernetes_namespace if you changed the default. Open http://127.0.0.1:6420/ui and keep the command running.

  2. Sign in with your admin token

Provision new tokens

Create tokens with the permissions your application needs. See Role-Based Access Control.