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>
57 lines
1.3 KiB
HCL
57 lines
1.3 KiB
HCL
# Storage Module - Outputs
|
|
# RFC 0039: ADR-Compliant Foundation Infrastructure
|
|
|
|
output "efs_id" {
|
|
description = "EFS filesystem ID"
|
|
value = aws_efs_file_system.main.id
|
|
}
|
|
|
|
output "efs_arn" {
|
|
description = "EFS filesystem ARN"
|
|
value = aws_efs_file_system.main.arn
|
|
}
|
|
|
|
output "efs_dns_name" {
|
|
description = "EFS filesystem DNS name"
|
|
value = aws_efs_file_system.main.dns_name
|
|
}
|
|
|
|
output "efs_access_point_id" {
|
|
description = "EFS access point ID"
|
|
value = aws_efs_access_point.main.id
|
|
}
|
|
|
|
output "efs_security_group_id" {
|
|
description = "EFS security group ID"
|
|
value = aws_security_group.efs.id
|
|
}
|
|
|
|
output "backup_bucket_name" {
|
|
description = "S3 bucket name for backups"
|
|
value = aws_s3_bucket.backups.id
|
|
}
|
|
|
|
output "backup_bucket_arn" {
|
|
description = "S3 bucket ARN for backups"
|
|
value = aws_s3_bucket.backups.arn
|
|
}
|
|
|
|
output "blob_bucket_name" {
|
|
description = "S3 bucket name for blob storage"
|
|
value = aws_s3_bucket.blobs.id
|
|
}
|
|
|
|
output "blob_bucket_arn" {
|
|
description = "S3 bucket ARN for blob storage"
|
|
value = aws_s3_bucket.blobs.arn
|
|
}
|
|
|
|
output "kms_key_arn" {
|
|
description = "KMS key ARN for storage encryption"
|
|
value = aws_kms_key.storage.arn
|
|
}
|
|
|
|
output "kms_key_id" {
|
|
description = "KMS key ID for storage encryption"
|
|
value = aws_kms_key.storage.key_id
|
|
}
|