29 lines
879 B
HCL
29 lines
879 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
|
|
langfuse_host = "http://10.0.0.12:3000"
|
|
|
|
aws_region_app = "us-east-2"
|
|
bedrock_model_arn = "arn:aws:bedrock:us-east-2:232048051668:application-inference-profile/uy4xskop19zn"
|
|
output_bucket = "upflux-doc-analyzer"
|
|
api_version = "v1" |