Adds initial files]

This commit is contained in:
2026-01-20 13:48:13 -03:00
parent 12176c50c1
commit 6026870c5c
16 changed files with 1316 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
aws_region = "us-east-2"
app_name = "upflux-doc-analyser"
# Replace these with your actual IDs
vpc_id = "vpc-0270f02aee3bf1b8d"
# Your public subnets (where ALB will be)
public_subnet_ids = [
"subnet-088bc49c54ec8f028", # Public subnet 1
"subnet-003f1693910a99afb" # Public subnet 2
]
# Your private subnets (where ECS tasks will run)
private_subnet_ids = [
"subnet-045f73d784beed091", # Private subnet 1
"subnet-06e660f44bf141442" # Private subnet 2
]
ecr_repository_name = "upflux-doc-analyser"
image_tag = "latest"
fargate_cpu = "256"
fargate_memory = "512"
app_count = 1