If I have an ALB in my infrastructure with ECS target groups downstream, will SSL/TLS always be terminated at the ALB?
If so, are my only options ELB/NLB to preserve the SSL/TLS context?
If I have an ALB in my infrastructure with ECS target groups downstream, will SSL/TLS always be terminated at the ALB?
If so, are my only options ELB/NLB to preserve the SSL/TLS context?
ALB always terminates https, but can create a new https session to your target servers if you set them up with certificates. Information here. Note that you can't use AWS Certificate Manager for servers, you need third party certificates.
If you want TLS terminated on the servers themselves your best option is to use an NLB. ELB are generally not used these days unless you have a very good reason, they're first gen.