I have an Application Load Balancer (ALB) that uses the default DNS name provided by AWS.
i.e. name of my-loadbalancer
in US East is given the DNS name:
my-loadbalancer-1234567890.us-east-1.elb.amazonaws.com
I have a listener over HTTP that works just fine:
http://my-loadbalancer-1234567890.us-east-1.elb.amazonaws.com/
However, when I go to add an HTTPS Listener, I need to provide a certificate that matches the current domain. I can pick something from my ACM store, but they're all for custom domains
I can request a new certificate, but not sure how I'd be able to validate against ***.us-east-1.elb.amazonaws.com
This is a backend service, so I don't need a user friendly domain.
Is there anyway to add HTTPS to a load balancer out of the box?