Skip to content

Commit

Permalink
Allow 443 traffic on load balancer
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Feb 5, 2024
1 parent 62da84e commit 2a46fd5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tf/environments/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,13 @@ resource "aws_security_group" "lb_sg" {
cidr_blocks = ["0.0.0.0/0"]
}

ingress {
protocol = "tcp"
from_port = 443
to_port = 443
cidr_blocks = ["0.0.0.0/0"]
}

egress {
from_port = 0
to_port = 0
Expand Down

0 comments on commit 2a46fd5

Please sign in to comment.