initial commit of replacement infrastructure automation
[awsible] / infrastructure / vpc / outputs.tf
diff --git a/infrastructure/vpc/outputs.tf b/infrastructure/vpc/outputs.tf
new file mode 100644 (file)
index 0000000..4f98b3c
--- /dev/null
@@ -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}"
+}