We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 382dd22 commit fe6a00dCopy full SHA for fe6a00d
1 file changed
terraform/traefik.tf
@@ -214,6 +214,15 @@ resource "aws_security_group" "traefik" {
214
ipv6_cidr_blocks = ["::/0"]
215
}
216
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
+
226
egress {
227
from_port = 0
228
to_port = 0
0 commit comments