Skip to content

Commit 86eb5b2

Browse files
committed
refactor: export cluster_name attribute to promote better implicit dependability
1 parent 0416aa7 commit 86eb5b2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
##############################
2-
# ECS Cluster Outputs
2+
# ECS Cluster
33
##############################
44

55
output "cluster_arn" {
66
description = "ARN of the ECS Cluster"
77
value = module.ecs_cluster.arn
88
}
9+
10+
output "cluster_name" {
11+
description = "Name of the ECS Cluster"
12+
value = var.cluster_name
13+
}

0 commit comments

Comments
 (0)