diff --git a/infra/security-groups.tf b/infra/security-groups.tf index bb53df1..8738a7a 100644 --- a/infra/security-groups.tf +++ b/infra/security-groups.tf @@ -20,6 +20,12 @@ resource "aws_security_group" "ecs_web_ingress" { resource "aws_security_group" "base_ecs" { vpc_id = aws_vpc.athens_vpc.id + egress { + cidr_blocks = ["0.0.0.0/0"] + from_port = 80 + to_port = 80 + protocol = "tcp" + } egress { cidr_blocks = ["0.0.0.0/0"] from_port = 443