I have a load balancer, and I need a secure connection for it. Currently if you access: https://myapp.us-east-1.elb.amazonaws.com/ it's unsecure connection. For this I did the following:
- I went to AWS Certificate Manager, and generated the certificate (I've requested one, with email validation and all went well):
Domain: godaddydomanain.com Status: Issued
The certificate was issued under the same region as the load balancer.
Coming back to my load balancer, I added a listener HTTPS:443. For Forward to myapp.us-east-1.elb.amazonaws.com HTTP - weight 1 With security policy ELBSecurityPolicy-2016-08 (the default that was there) Default SSL/TLS certificate: From ACM I selected the certificate created previously.
After this, when open https://myapp.us-east-1.elb.amazonaws.com/ I still see unsecure.
On my godaddy console I have in the DNS table:
CNAME www myapp.us-east-1.elb.amazonaws.com. 1 Hour - so when I access www.godaddydomain.com its ok, unsecure but ok
HTTPS godaddydomain.com myapp.us-east-1.elb.amazonaws.com. 1 Hour - I've added it just now (but it will take 48 hours to see something)
This should solve my issue to access godaddydomain.com with a secure connection?
Shouldn't I be able to see right now a secure connection when accessing myapp.us-east-1.elb.amazonaws.com? I am afraid that I did something wrong.
[After 2 days update]: the certificate is approved. The https://godaddydomain.com is not working and the www.godaddydomain.com and godaddydomain.com are still unsecure.
Please help