I'm a bit stuck installing an SSL Cert on an AWS Elastic Load Balancer. I have a wildcard certificate from GoDaddy and need to point it at the ELB.
I have run the command (I ran it on one of the servers behind the load balancer):
openssl req -new -newkey rsa:2048 -nodes -keyout mydomain.key -out mydomain.csr
and then I have sent the .csr file to GoDaddy. At which point they have returned a zip folder with two files in it: gd_bundle.crt
and mydomain.com.crt
. The gd_bundle.crt when looking at it appears to have two unique keys inside of it (two base 64 encoded strings).
Amazon ELB is asking for a Public and a Private key and based on what I've done I'm not sure which is what. From this point I'm not sure what to do to get this all loaded.
Any help would be greatly appreciated.