Adds langfuse ec2 and api key to code

This commit is contained in:
2026-02-26 13:34:45 -03:00
parent 5717cdd254
commit b7c0b92fa3
14 changed files with 487 additions and 41 deletions

View File

@@ -0,0 +1,36 @@
# ──────────────────────────────────────────────
# General
# ──────────────────────────────────────────────
aws_region = "us-east-2"
project_name = "langfuse"
environment = "dev"
tags = {
project = "doc-processor"
env = "dev"
costCenter = "AI"
owner = "ai-team"
}
# ──────────────────────────────────────────────
# Network
# ──────────────────────────────────────────────
vpc_id = "vpc-0270f02aee3bf1b8d"
subnet_id = "subnet-088bc49c54ec8f028" # public-us-east-1a-subnet
# ──────────────────────────────────────────────
# EC2
# ──────────────────────────────────────────────
instance_type = "t3.xlarge"
instance_name = "LangfuseEC2"
sg_name = "langfuse-sg"
allowed_ports = [22, 80, 443, 3000]
root_volume_size = 100
root_volume_type = "gp2"
ebs_device_name = "/dev/sdf"
# ──────────────────────────────────────────────
# Langfuse
# ──────────────────────────────────────────────
langfuse_repo_url = "https://github.com/langfuse/langfuse.git"
langfuse_web_port = 3000