From f158eb7601b89764dfa5f5ab890bd130e5775a39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Tobias=20Skjong-B=C3=B8rsting?= Date: Wed, 13 Feb 2019 22:34:45 +0100 Subject: [PATCH] Added main_route_table_id output. --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index d2697ef..d9c6a51 100644 --- a/outputs.tf +++ b/outputs.tf @@ -25,3 +25,8 @@ output "private_subnets_route_table_ids" { description = "The IDs of the routing tables for the private subnets." value = "${aws_route_table.private.*.id}" } + +output "main_route_table_id" { + description = "The ID of the main route table." + value = "${aws_vpc.main.main_route_table_id}" +}