23 lines
629 B
HCL
23 lines
629 B
HCL
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 |