Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix: allow TCP SOCKS traffic into the NLB from ECS
  • Loading branch information
TrueBrain committed Jul 10, 2021
1 parent 9552f78 commit 77b2493
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion openttd/stack/common/nlb_self.py
Expand Up @@ -249,7 +249,12 @@ def __init__(
self.security_group.add_ingress_rule(
peer=ecs_source_security_group,
connection=Port.udp(8080),
description="ECS to target",
description="ECS to target (SOCKS UDP)",
)
self.security_group.add_ingress_rule(
peer=ecs_source_security_group,
connection=Port.tcp(8080),
description="ECS to target (SOCKS TCP)",
)

self.security_group.add_ingress_rule(
Expand Down

0 comments on commit 77b2493

Please sign in to comment.