Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions terraform/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ module "backend" {
permissions_boundary_name = "infra/i-dot-ai-${var.env}-parliament-mcp-perms-boundary-app"

# Resource allocation - increased from defaults (256/512) for embedding model overhead
memory = 2048
cpu = 512
# Preprod gets double allocation
memory = var.env == "preprod" ? 4096 : 2048
cpu = var.env == "preprod" ? 1024 : 512

create_networking = true
create_listener = true
Expand Down
Loading