Skip to content

Commit e07b3f4

Browse files
authored
Merge pull request #4 from martynova1/patch-1
Add Cluster ARN output
2 parents 6109399 + 3172135 commit e07b3f4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
output "this_ecs_cluster_id" {
22
value = "${element(concat(aws_ecs_cluster.this.*.id, list("")), 0)}"
33
}
4+
5+
output "this_ecs_cluster_arn" {
6+
value = "${element(concat(aws_ecs_cluster.this.*.arn, list("")), 0)}"
7+
}

0 commit comments

Comments
 (0)