Skip to content

Commit

Permalink
Issue #58: Add ElastiCache subnet group name output. (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jekstrom authored and antonbabenko committed Jan 21, 2018
1 parent fc48cf7 commit fa68b2f
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 fa68b2f

Please sign in to comment.