hearth/terraform/versions.tf
Eric Garcia e78000831e Initial commit: Port infrastructure from coherence-mcp
Hearth is the infrastructure home for the letemcook ecosystem.

Ported from coherence-mcp/infra:
- Terraform modules (VPC, EKS, IAM, NLB, S3, storage)
- Kubernetes manifests (Forgejo, ingress, cert-manager, karpenter)
- Deployment scripts (phased rollout)

Status: Not deployed. EKS cluster needs to be provisioned.

Next steps:
1. Bootstrap terraform backend
2. Deploy phase 1 (foundation)
3. Deploy phase 2 (core services including Forgejo)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 06:06:13 -05:00

35 lines
815 B
HCL

# Foundation Infrastructure - Terraform Configuration
# RFC 0039: ADR-Compliant Foundation Infrastructure
# ADR 0003: CockroachDB Self-Hosted FIPS
# ADR 0004: Set It and Forget It Architecture
# ADR 0005: Full-Stack Self-Hosting
terraform {
required_version = ">= 1.6.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.30"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.24"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.12"
}
kubectl = {
source = "gavinbunney/kubectl"
version = "~> 1.14"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0"
}
}
# Backend configuration - use S3 for state storage
# Configure in environments/production/backend.tf
}