Skip to content

Commit fa68b2f

Browse files
jekstromantonbabenko
authored andcommitted
Issue terraform-aws-modules#58: Add ElastiCache subnet group name output. (terraform-aws-modules#60)
1 parent fc48cf7 commit fa68b2f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ output "elasticache_subnet_group" {
9090
value = "${element(concat(aws_elasticache_subnet_group.elasticache.*.id, list("")), 0)}"
9191
}
9292

93+
output "elasticache_subnet_group_name" {
94+
description = "Name of elasticache subnet group"
95+
value = "${element(concat(aws_elasticache_subnet_group.elasticache.*.name, list("")), 0)}"
96+
}
97+
9398
# Route tables
9499
output "public_route_table_ids" {
95100
description = "List of IDs of public route tables"

0 commit comments

Comments
 (0)