I've purchased an SSL certificate from GoDaddy. I've created a keystore file, generated a CSR file from it, sent it to GoDaddy, and received these files:
- mydomain.crt
- gd_intermediate.crt
- gd_bundle.crt
Now I am trying to create an Elastic Load Balancer in the AWS console. When asked for certificate details, they ask for:
- Private Key (PEM encoded)
- Public Key Certificate (PEM encoded)
- Certificate Chain (PEM encoded, optional)
How do I convert the files I have to these parameters?
I recently had to go through this process and none of the answers worked for me. Here are the steps that allowed me to upload a new SSL certificate to AWS (for subsequent use in ElasticBeanstalk).
Obtaining Private Key
I had to use two commands for this process:
The
server.key
file is your Private Key.Additionally, you can generate the CSR (Certificate Signing Request) by doing:
This is the file we'll use to request GoDaddy to issue our new certificate.
Obtaining Public Key
Once the certificate has been issued in GoDaddy download it. This will give you two files which must be bundled into one by doing:
The
combined.crt
would be your Public Key.Uploading server certificate to AWS
With the
server.key
andcombined.crt
file you can now upload the certificate to AWS using AWS CLI. You just have to use the following command:If everything went well, you'll receive a response from the server:
And that’s it, you should have a new SSL certificate available to you in AWS.