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>
37 lines
860 B
HCL
37 lines
860 B
HCL
# S3 Module Variables
|
|
# RFC 0039: ADR-Compliant Foundation Infrastructure
|
|
|
|
variable "name" {
|
|
description = "Name prefix for resources"
|
|
type = string
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "Tags to apply to all resources"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "log_retention_days" {
|
|
description = "Number of days to retain logs in Loki bucket"
|
|
type = number
|
|
default = 90
|
|
}
|
|
|
|
variable "trace_retention_days" {
|
|
description = "Number of days to retain traces in Tempo bucket"
|
|
type = number
|
|
default = 30
|
|
}
|
|
|
|
variable "enable_cross_region_replication" {
|
|
description = "Enable cross-region replication for critical buckets"
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "replica_region" {
|
|
description = "AWS region for bucket replication"
|
|
type = string
|
|
default = "us-west-2"
|
|
}
|