Files
nova-platform/modules/l1/ecs-cluster/terraform/outputs.tf
T
CIAgent 11e342a9f7 docs(P03): complete l1-primitives-registry phase
---ci---
project: nova-platform
phase: 3
milestone: v1.0
status: complete
---/ci---

P3 complete: 13 L1 primitives + registry + module docs.
68 tests pass. REQ-10,11,13,34 covered.
2026-08-24 17:41:43 +00:00

9 lines
280 B
Terraform

output "cluster_arn" {
value = var.enabled ? aws_ecs_cluster.this[0].arn : null
description = "The ECS cluster ARN."
}
output "cluster_name" {
value = var.enabled ? aws_ecs_cluster.this[0].name : null
description = "The ECS cluster name (echoes the input)."
}