Unrecognized x509 Certificate Error #397
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hi @J-Hunter-Hawke, Good question. I think you're not even making it through the TLS handshake with the load balancer, and that's why nothing is showing in any of your request logs. Best to have the CA and client speak directly to each other or via network load balancing or TLS passthrough. Best, |
Beta Was this translation helpful? Give feedback.
-
@J-Hunter-Hawke |
Beta Was this translation helpful? Give feedback.
-
Thank you @tashian and @maraino for the suggestions. I have switched over to using an NLB without an ACM certificate, and the certificate authority is working as expected. However, I will keep note that we can append a second certificate if need be in the future. |
Beta Was this translation helpful? Give feedback.
Hi @J-Hunter-Hawke,
Good question. I think you're not even making it through the TLS handshake with the load balancer, and that's why nothing is showing in any of your request logs.
step
expects to be able to establish a mutual TLS connection with the CA. Application load balancing would require your ALB to decrypt and encrypt messages and essentially impersonate the CA, and we don't recommend that from a security standpoint. It's also a pain to configure.Best to have the CA and client speak directly to each other or via network load balancing or TLS passthrough.
Best,
Carl