AWS deployment via Terraform is planned. This guide will cover infrastructure provisioning for:
- ECS Fargate or EKS for container hosting
- RDS SQL Server for the database
- Amazon MQ for RabbitMQ-compatible messaging
- Application Load Balancer for traffic distribution
- CloudWatch for OpenTelemetry OTLP ingestion
Planned infrastructure
resource "aws_ecs_service" "bitzorcas-api" { # ...}
resource "aws_db_instance" "bitzorcas-db" { engine = "sqlserver-ex" engine_version = "16.00" instance_class = "db.t3.medium" # ...}See also
- Deployment overview — Deployment options