Skip to content

Commit

Permalink
Output public subnet ids in core module (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissng authored Feb 21, 2018
1 parent 131c1d8 commit 1843896
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions environments/staging/core/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 1843896

Please sign in to comment.