initial commit of replacement infrastructure automation
[awsible] / infrastructure / vpc / outputs.tf
1 output "vpc_id" {
2 value = "${module.vpc.vpc_id}"
3 }
4
5 output "public_subnets" {
6 value = "${module.vpc.public_subnets}"
7 }
8
9 output "private_subnets" {
10 value = "${module.vpc.private_subnets}"
11 }
12
13 output "nat_gateway_ips" {
14 value = "${module.vpc.nat_gateway_ips}"
15 }
16
17 output "base_policy_arn" {
18 value = "${module.vpc.base_policy_arn}"
19 }
20
21 output "general_access_sg_id" {
22 value = "${module.vpc.general_access_sg_id}"
23 }