Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS Certificate Request Validation Timeout

I'm trying to request a certificate using AWS certificate manager. I'm using route53 for DNS. I go through all of the steps, and use the "create record in Route53" to create the CNAME record automatically. I have double checked the CNAME record in Route53 to make sure it is the same one that ACM expects. After doing all of this, the DNS validation times out.

I have tried this multiple times with the same result. I barely know how to use dig so I'm kind of lost on how to troubleshoot this. Thanks.

like image 286
Max Paymar Avatar asked Jul 24 '26 10:07

Max Paymar


1 Answers

I had registered a domain with Route 53 and was facing a similar issue when I deleted my website's hosted zone.

The CNAME record in Route 53 was exactly as it was in ACM (no extra strings, whitespaces, etc.)

The issue was in Route 53 - the name servers associated with the registered domain were different from the name servers associated with the hosted zone.

I fixed this issue by:-

  1. Deleting and re-creating the hosted zone.
  2. Replacing the NS values in the registered domain with the NS values of from the newly created hosted zone.
  3. Creating a certificate in Certificate Manager with the domain name matching with the one specified in Route 53 hosted zone.
  4. Creating a Route 53 record from the Certificate manager wizard (which is step 5 in the wizard)
like image 174
Saurabh Avatar answered Jul 27 '26 16:07

Saurabh