Skip to main content

AuthStack Toolbox

An internal utility container with no ingress. Used for running one-off admin scripts, database migrations, and debugging tasks inside the VNet.

Details

FieldValue
Azure nameauthstack-toolbox
Resource grouptesting
Environmentcerebro-auth-env (South India)
VisibilityNo ingress (internal only)

When to Use

Since OpenFGA and PostgreSQL are inside the private VNet, you can exec into the toolbox to reach them from a shell:

az containerapp exec \
--name authstack-toolbox \
--resource-group testing \
--command "/bin/sh"

Inside the shell you can:

  • Run psql to connect to the private PostgreSQL
  • Hit OpenFGA's internal API with curl
  • Run one-off migration scripts
  • Debug internal DNS resolution

View Logs

az containerapp logs show \
--name authstack-toolbox \
--resource-group testing \
--tail 50