Skip to content

Commit

Permalink
Issue terraform-aws-modules#58: Add ElastiCache subnet group name out…
Browse files Browse the repository at this point in the history
…put.
  • Loading branch information
jekstrom committed Jan 19, 2018
1 parent 4c8f457 commit 79fa50d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ output "elasticache_subnet_group" {
value = "${element(concat(aws_elasticache_subnet_group.elasticache.*.id, list("")), 0)}"
}

output "elasticache_subnet_group_name" {
description = "Name of elasticache subnet group"
value = "${element(concat(aws_elasticache_subnet_group.elasticache.*.name, list("")), 0)}"
}

# Route tables
output "public_route_table_ids" {
description = "List of IDs of public route tables"
Expand Down

0 comments on commit 79fa50d

Please sign in to comment.