API design
Serverless control plane
Requests are handled via API Gateway and Lambda using a stateless request model. The API is idempotent, horizontally scalable, and failure-aware.
This backend exists to simulate real operational systems. It exposes live infrastructure state, not mocked data. Every response reflects production conditions.
API design
Requests are handled via API Gateway and Lambda using a stateless request model. The API is idempotent, horizontally scalable, and failure-aware.
Observability
Health checks, reachability tests, and metrics are pulled from real AWS services and made visible through a controlled API surface.
Resilience
Timeouts, upstream failures, and malformed responses are handled explicitly and returned cleanly to the UI without masking.
Infrastructure
All infrastructure business logic is encoded using Terraform including permissions, execution roles, and API routing.
Source control
The complete backend implementation and infrastructure definitions are tracked in GitHub.
Includes Lambda code, Terraform, and workflows.