From f47ce5e4ff5ac89d9fcf02f597199b859657fca9 Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 16 Dec 2022 22:50:15 -0800 Subject: [PATCH] Adding fallback for port 80 on base ecs --- infra/security-groups.tf | 6 ++++++ 1 file changed, 6 insertions(+) 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