Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/shared-security-group/security-group.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ resource "aws_security_group" "internet_access" {

# Allow all outbound traffic
egress {
from_port = 0
to_port = 0
protocol = "-1"
from_port = 8080
to_port = 8080
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
description = "Allow all outbound traffic"
description = "API outbound traffic only"
}

# Allow SSH for management
Expand Down