You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If set, FastAPI installs CORS middleware with those origins; if unset and ENVIRONMENT != "prod", settings default it to ["*"]; ["*"] is rejected when ENVIRONMENT == "prod"
Repo automation secrets and workflow vars
These are not application settings, but they are verified in GitHub workflow files:
GitHub Actions assumes this AWS role before pushing images
GITHUB_TOKEN
.github/workflows/release-please.yml
Used by release-please
AWS_REGION
workflow env
Set to ap-southeast-2 in the repo workflows
IMAGE_REPO
workflow env
ECR repository used by build jobs
DEPLOY_FUNCTION_NAME
workflow env
Lambda function invoked by the dev deployment workflow
Inferences
BACKEND_CORS_ORIGINS is expected to be supplied in a Pydantic-compatible list form such as a JSON array string, because it is typed as List[str] in Settings.
Unknown From This Repo
The real production values for any of these settings.
Whether there are additional deployment-time environment variables injected outside the repository.