From a94adbe3ea60fdbf74ef5c6c4b8315de0a44969e Mon Sep 17 00:00:00 2001 From: Murilo Kakazu Date: Sun, 29 Sep 2024 01:40:01 -0300 Subject: [PATCH] feat: add egress rules --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index ab83b70..6b0d638 100644 --- a/main.tf +++ b/main.tf @@ -170,8 +170,8 @@ resource "aws_security_group" "default_security_group" { egress { from_port = 0 to_port = 0 - protocol = "-1" # -1 means all protocols - cidr_blocks = ["0.0.0.0/0"] # Allow all outbound traffic + protocol = "-1" + cidr_blocks = ["0.0.0.0/0"] } tags = {