Hello everyone! Is there a way to extend the <AWS...
# general
c
Hello everyone! Is there a way to extend the AWS fargate pulumi example to use https instead of just http? I'm looking to terminate SSL at the load balancer, something like:
client <- port 443 -> ALB <- port 80 -> Fargate task
c
Yes you can absolutely do this. The docs have an example of setting up a https listener: https://www.pulumi.com/registry/packages/aws/api-docs/alb/listener/#forward-action
You can setup your http listener to perform a redirect to https as usual
❤️ 1
c
Thank you so much! 🙂
c
Beware that I linked to AWS classic provider, you’re example is using awsx (which I think is
crosswalk
but don’t quote me on that). I don’t how well they mix and match
👀 1