37 lines
1.7 KiB
HCL
37 lines
1.7 KiB
HCL
# ──────────────────────────────────────────────
|
|
# 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
|