Serverless REST API with AWS Lambda, DynamoDB, and API Gateway deployed using Terraform.
- AWS Lambda (Python 3.11)
- DynamoDB
- API Gateway
- Terraform
- CloudWatch
terraform init
terraform apply
terraform output api_gateway_url| Method | Endpoint | Description |
|---|---|---|
| POST | /tasks |
Create task |
| GET | /tasks |
List tasks |
| GET | /tasks/{id} |
Get task |
| PUT | /tasks/{id} |
Update task |
| DELETE | /tasks/{id} |
Delete task |
terraform destroy