Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
VEGA-2424
  • Loading branch information
gregtyler committed Apr 3, 2024
1 parent eefed14 commit 8d73099
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions terraform/account/region/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ locals {
"ecr.api",
"ecr.dkr",
"events",
"execute-api",
"logs",
"secretsmanager",
"xray",
Expand Down
13 changes: 12 additions & 1 deletion terraform/modules/fixtures_service/security_group.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,18 @@ data "aws_security_group" "vpc_endpoints_application" {
provider = aws.region
}

resource "aws_security_group_rule" "lambda_to_vpc_gateways" {
resource "aws_security_group_rule" "ecs_to_public_web" {
type = "egress"
protocol = "tcp"
from_port = 443
to_port = 443
security_group_id = aws_security_group.ecs.id
cidr_blocks = ["0.0.0.0/0"]

provider = aws.region
}

resource "aws_security_group_rule" "ecs_to_vpc_gateways" {
type = "egress"
protocol = "tcp"
from_port = 443
Expand Down

0 comments on commit 8d73099

Please sign in to comment.