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>
41 lines
947 B
HCL
41 lines
947 B
HCL
# NLB Module - Variables
|
|
# RFC 0039: ADR-Compliant Foundation Infrastructure
|
|
|
|
variable "name" {
|
|
description = "Name prefix for all NLB resources"
|
|
type = string
|
|
}
|
|
|
|
variable "vpc_id" {
|
|
description = "VPC ID"
|
|
type = string
|
|
}
|
|
|
|
variable "public_subnet_ids" {
|
|
description = "List of public subnet IDs for NLB"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "enable_deletion_protection" {
|
|
description = "Enable deletion protection for NLB"
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "Tags to apply to all resources"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "enable_static_ips" {
|
|
description = "Enable Elastic IPs for stable glue records (required for DNS delegation)"
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "elastic_ip_ids" {
|
|
description = "List of pre-allocated Elastic IP allocation IDs (one per subnet/AZ)"
|
|
type = list(string)
|
|
default = []
|
|
}
|