Skip to content

Commit fe6a00d

Browse files
committed
Fix bootcamp email
1 parent 382dd22 commit fe6a00d

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

terraform/traefik.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,15 @@ resource "aws_security_group" "traefik" {
214214
ipv6_cidr_blocks = ["::/0"]
215215
}
216216

217+
# Allow Traefik to forward smtp traffic from ctfd to the internet
218+
ingress {
219+
from_port = 587
220+
to_port = 587
221+
protocol = "tcp"
222+
cidr_blocks = ["10.0.0.0/24"]
223+
ipv6_cidr_blocks = [cidrsubnet(aws_vpc.default.ipv6_cidr_block, 8, 0)]
224+
}
225+
217226
egress {
218227
from_port = 0
219228
to_port = 0

0 commit comments

Comments
 (0)