Commit fa68b2f8 authored by James Ekstrom's avatar James Ekstrom Committed by Anton Babenko

Issue #58: Add ElastiCache subnet group name output. (#60)

parent fc48cf72
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment