Skip to content

Commit

Permalink
feat: add egress rules
Browse files Browse the repository at this point in the history
  • Loading branch information
MuriloKakazu committed Sep 29, 2024
1 parent d2502ea commit a94adbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit a94adbe

Please sign in to comment.