We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633effb commit eb7ece0Copy full SHA for eb7ece0
network.tf
@@ -89,13 +89,7 @@ resource "aws_security_group" "ecs_tasks" {
89
}
90
91
egress {
92
- description = "Allow outbound to ECS tasks only"
93
- protocol = "tcp"
94
- from_port = 3000
95
- to_port = 3000
96
- # Removed self-reference. Allow all outbound traffic from tasks so they can
97
- # reach other services (DNS, ECR, etc.). If you want tighter egress rules,
98
- # replace with specific cidr_blocks or security_groups pointing to other SGs.
+ description = "Allow outbound to internet (DNS, ECR, external services)"
99
protocol = "-1"
100
from_port = 0
101
to_port = 0
0 commit comments