- Newest
- Most votes
- Most comments
I understand you're experiencing issues with ACM certificate validation for your .de domain. Let's address your situation step by step:
-
For the subdomain sub.abcde.de: The "Pending validation" status is normal initially. ACM uses the CNAME record you added to your DNS configuration to validate your ownership of the domain. This process can take some time, potentially up to 72 hours. If it's been less than that, please be patient and wait a bit longer.
-
For api.sub.abcde.de: The same applies here. The "Pending validation" status is expected during the validation process.
-
For *.abcde.de and subsequent attempts: The "failed" status you're seeing could be due to a few reasons:
a) Timing: If you're adding and deleting requests too quickly, it might not give ACM enough time to complete the validation process.
b) DNS propagation: Although you mentioned checking DNS propagation, sometimes it can take longer for changes to fully propagate across all DNS servers.
c) Incorrect CNAME entries: Double-check that you've entered the CNAME records exactly as provided by ACM, including the trailing dot if present.
d) Domain restrictions: Some top-level domains have additional restrictions, but .de domains typically don't have issues with ACM.
Here are some steps you can take:
-
Wait at least 72 hours for the initial requests that are still "Pending validation".
-
For the failed requests, delete them and try again, making sure to carefully add the CNAME records as provided by ACM.
-
Use a DNS lookup tool to verify that the CNAME records are visible and correct from multiple locations.
-
If you continue to have issues after these steps, you may need to contact AWS Support or post in the ACM Discussion Forum for more specific assistance.
Regarding the 403 error you're seeing when trying to access your website, this could indeed be related to the certificate issue, but it could also be due to CloudFront or S3 configuration. Make sure your CloudFront distribution is properly configured to use the new domain and that the S3 bucket policy allows access from CloudFront.
Remember, ACM certificates are valid for 13 months and are automatically renewed if the DNS records remain in place. Once you successfully validate your certificates, you shouldn't need to repeat this process frequently.
Sources
Troubleshoot certificate validation - AWS Certificate Manager
Resolve the ACM "validation time out" error | AWS re:Post
Troubleshoot certificate requests - AWS Certificate Manager
Renew ACM managed DNS-validated certificates | AWS re:Post
answered 2 years ago
Hallo, the Pending validation is still waiting, but it is nearly 72h, not sure it can be varificated successfully. But no matter which domain I request for the cert now, it always be failed.
- DNS propagation CHECKED, already propagated.
- Incorrect CNAME entries. CHECKED, the CNAME name and value are all same as ACM privded, and including the trailing dot.
- IAM role has also add the policy
{
Effect = "Allow",
Action = [
"acm:RequestCertificate",
"acm:DescribeCertificate",
"acm:DeleteCertificate",
"acm:ListCertificates",
"acm:AddTagsToCertificate",
"acm:RemoveTagsFromCertificate"
],
Resource = "*"
}
but pending still pending, new request still failed.
And I see some post here, said there are a limit for request for the SSL certificate on ACM, "Each supported Region: 5,000", so it seems I am not reach the limit yet.
And as it seems it will not be successful, and I also turn to Cloudflare origin cert. But it shows the certificate is not trusted...
Could someone give some suggestions? Why it continue failed? Is there other way to get a ssl certificate outside the ACM?
answered 2 years ago
This works, the final steps are here
- Go to ACM, Request a certificate, certificate type public -> click next
- . Put fully qualified domain name as *.xyz.com or abc.xyz.com .
- validation method: DNS validation
- if you choose email then you must have email like com@xyz.com, Click next
- Choose algorithm RSA.
- click request your certificate will be create and you will be provided with a CNAME and Value.
Go to your hosting site, like hostinger or godaddy etc. Goto cpanel or hpanel choose your domain go to DNS record Create a subdomain with value abc.xyz.com where xyz.com is a domain to create subdomain just add CNAME = abc.xyz.com and value = your origin URL domain eg. xyz.cloudfront.net Create CNAME = <Certificate copied cname> VALUE <<Certificate copied value>> Create another CAA record as below NAME : @ FLAG =0 TAG = issuewild CA Domain = "amazon.com" Click = add record
Goback to ACM. you will see the certificate is issued. If not then wait for around 48 hours so that your domain is properly propagated on DNS.
Hope this will help to everybody
answered a year ago
Relevant content
asked a year ago
asked 3 years ago
asked 3 years ago
- AWS OFFICIALUpdated 2 years ago

sorry, https://repost.aws/questions/QUhq11s264RRyv_Dq--vXdKA/acm-failed-verification-quick-failures#ANw8Rr71bYQEaagHtsVFF7AA
has answered my question. Thanks.