From 18438964d6c45084eb7222483432c2cdaa402c65 Mon Sep 17 00:00:00 2001 From: Chris Sng Date: Wed, 21 Feb 2018 15:26:53 +0900 Subject: [PATCH] Output public subnet ids in core module (#40) --- environments/staging/core/outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/environments/staging/core/outputs.tf b/environments/staging/core/outputs.tf index efc773e0..cc10f5f0 100644 --- a/environments/staging/core/outputs.tf +++ b/environments/staging/core/outputs.tf @@ -32,6 +32,11 @@ output "vpc_public_subnets" { value = "${module.core.vpc_public_subnets}" } +output "vpc_private_subnets" { + description = "IDs of private subnets" + value = "${module.core.vpc_private_subnets}" +} + output "vpc_private_route_table_ids" { description = "IDs of private route tables" value = "${module.core.vpc_private_route_table_ids}"