Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 75a7f8e

Browse files
authored
fix: allow inbound port 80 to the ALB (#8)
1 parent 1220840 commit 75a7f8e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,13 @@ resource "aws_security_group" "lb-vault-sg" {
193193
vpc_id = "${data.aws_vpc.vpc.id}"
194194
tags = "${local.sg_tags}"
195195

196+
ingress {
197+
from_port = 80
198+
to_port = 80
199+
protocol = "tcp"
200+
cidr_blocks = ["0.0.0.0/0"]
201+
}
202+
196203
ingress {
197204
from_port = 443
198205
to_port = 443

0 commit comments

Comments
 (0)