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
| Field | Value |
|---|---|
| Azure name | authstack-toolbox |
| Resource group | testing |
| Environment | cerebro-auth-env (South India) |
| Visibility | No 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
psqlto 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