From f062df01f3eb694b7988095a6b0e0cac32e7a823 Mon Sep 17 00:00:00 2001 From: Thomaz Leite Date: Wed, 7 Dec 2022 19:48:57 +0000 Subject: [PATCH] Allow egress UDP traffic through NAT instance --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 5d9beb7..5e6a817 100644 --- a/main.tf +++ b/main.tf @@ -11,7 +11,7 @@ resource "aws_security_group_rule" "egress" { cidr_blocks = ["0.0.0.0/0"] from_port = 0 to_port = 65535 - protocol = "tcp" + protocol = "all" } resource "aws_security_group_rule" "ingress_any" {