0

I have an ssl certificate(in GoDaddy) which I key for a domain api.example.com. I import it into aws using its certification manager. While doing so, I am seeing the domain it is detecting to be example.com, www.example.com

enter image description here

What exactly am I doing wrong? or there is some issue with aws certificate manager.

Kuldeep Yadav
  • 1,664
  • 5
  • 23
  • 41

1 Answers1

0

I called GoDaddy support and found that by default it picks domain name I own. So while rekeying it is required to mention domain name explicitly.

Steps to do that are as following:

  1. Expand Change the site that your certificate protects section by clicking on it. Uncheck the box Change to a hosted domain. It should look like below enter image description here
  2. Save and submit, wait it until it generates certificate.
  3. Download certificate and check the Subject Alternative Name: fields by using the command.

    openssl x509 -in certificateName.crt -text -noout
    
Kuldeep Yadav
  • 1,664
  • 5
  • 23
  • 41