X-Git-Url: http://git.squeep.com/?p=awsible;a=blobdiff_plain;f=infrastructure%2Fvpc%2Foutputs.tf;fp=infrastructure%2Fvpc%2Foutputs.tf;h=4f98b3c0f8d8a22e9215847862be2d456655fb9a;hp=0000000000000000000000000000000000000000;hb=8576668075ca95e44481d9c9ed29d7e6af024bdc;hpb=933c48ff1e134168de3aaa2d20e4d43c13d04928 diff --git a/infrastructure/vpc/outputs.tf b/infrastructure/vpc/outputs.tf new file mode 100644 index 0000000..4f98b3c --- /dev/null +++ b/infrastructure/vpc/outputs.tf @@ -0,0 +1,23 @@ +output "vpc_id" { + value = "${module.vpc.vpc_id}" +} + +output "public_subnets" { + value = "${module.vpc.public_subnets}" +} + +output "private_subnets" { + value = "${module.vpc.private_subnets}" +} + +output "nat_gateway_ips" { + value = "${module.vpc.nat_gateway_ips}" +} + +output "base_policy_arn" { + value = "${module.vpc.base_policy_arn}" +} + +output "general_access_sg_id" { + value = "${module.vpc.general_access_sg_id}" +}