How can I make the Listener forward to 8081 to the...
# general
a
How can I make the Listener forward to 8081 to the container instead of 443?
w
@lemon-spoon-91807 is this possible currently? It seems like the case where a listener is passed in doesn’t support also specifying a containerPort?
l
Def possible. You can do something similar to this:
Copy code
ts
new awsx.elasticloadbalancingv2.NetworkTargetGroup("custom", { port: 8080 }, providerOpts)
         .createListener("custom", { port: 80 });
a
omg, thank you guys!
l
sure!