From 79fa50da53586f4531c91cb7664a9cf5eecad604 Mon Sep 17 00:00:00 2001 From: James Ekstrom Date: Fri, 19 Jan 2018 11:01:22 -0600 Subject: [PATCH] Issue #58: Add ElastiCache subnet group name output. --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index f947ca227..d490cc479 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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"