Skip to content

Commit

Permalink
Some tasks need access to port 80 (HTTP), so loosen the egress rule for
Browse files Browse the repository at this point in the history
batch tasks
  • Loading branch information
ian-r-rose committed Dec 7, 2023
1 parent 1cdaa16 commit ce95588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/aws/modules/infra/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ resource "aws_security_group" "batch" {

egress {
description = "Allow ECS tasks to talk to the internet"
from_port = 443
to_port = 443
protocol = "tcp"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}

Expand Down

0 comments on commit ce95588

Please sign in to comment.