Feat: Desacoplamento

This commit is contained in:
2026-03-12 15:02:26 -03:00
parent 08be8e314d
commit 8c3c23c65f
11 changed files with 231 additions and 163 deletions

View File

@@ -58,4 +58,27 @@ variable "app_count" {
variable "langfuse_host" {
description = "Langfuse host URL"
type = string
}
variable "aws_region_app" {
description = "AWS region passed to the application container"
type = string
default = "us-east-2"
}
variable "bedrock_model_arn" {
description = "ARN of the AWS Bedrock application inference profile"
type = string
}
variable "output_bucket" {
description = "S3 bucket name for processed results"
type = string
default = "upflux-doc-analyzer"
}
variable "api_version" {
description = "API version prefix used in S3 output paths"
type = string
default = "v1"
}