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>
23 lines
520 B
HCL
23 lines
520 B
HCL
# IAM Module - Variables
|
|
# RFC 0039: ADR-Compliant Foundation Infrastructure
|
|
|
|
variable "cluster_name" {
|
|
description = "Name of the EKS cluster"
|
|
type = string
|
|
}
|
|
|
|
variable "cluster_oidc_issuer_url" {
|
|
description = "OIDC issuer URL from EKS cluster"
|
|
type = string
|
|
}
|
|
|
|
variable "cluster_oidc_provider_arn" {
|
|
description = "OIDC provider ARN from EKS cluster"
|
|
type = string
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "Tags to apply to all resources"
|
|
type = map(string)
|
|
default = {}
|
|
}
|