From 93e2694e9a73c9e6f1fb155bb5f624277efee606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Tobias=20Skjong-B=C3=B8rsting?= Date: Mon, 21 Sep 2020 16:35:25 +0200 Subject: [PATCH] Added output of default_network_acl_id --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index edcdc5d..0d96bf0 100644 --- a/outputs.tf +++ b/outputs.tf @@ -45,3 +45,8 @@ output "default_security_group_id" { description = "The id of the VPC default security group" value = aws_vpc.main.default_security_group_id } + +output "default_network_acl_id" { + description = "The ID of the network ACL created by default on VPC creation" + value = aws_vpc.main.default_network_acl_id +}