Certificate not getting issued

0

Hi, I want to issue a certificate for my domain something.com. I registered a domain on Route 53, created a hosted zone. Following Riku_Kobayashi's advice I added a new certificate resource to my cloudformation template:

"MonSiteVitrineCertificate": {
      "Type" : "AWS::CertificateManager::Certificate",
      "Properties" : {
        "DomainName" : "xxxxxx.com",
        "DomainValidationOptions" : [
          {
            "DomainName": "xxxxxxx.com",
            "HostedZoneId": "XXXXXXXXXXXX"
          }],
        "ValidationMethod" : "DNS"
      }
    },

The certificate was issued on first attempts but my geographic areas were misconfigured so I deleted them and started all over again and now the certificates won't get issued, they get stuck in PENDING_VALIDATION and the stack won't deploy. Please help!

1개 답변
1
수락된 답변

Hi,

With the AWS::CertificateManager::Certificate Cloudformation resource, the domain validation should be automatic if certificate domain is hosted in Amazon Route 53, the domain resides in your AWS account, and you are using DNS validation. - it looks like your use-case meets all three requirements.

You mentioned your initial attempt was successful - which means the CNAME record was added into your Route53 hosted zone. Are you using the same R53 zone or a different one? You can perform a DNS query for the CNAME to validate record was added into the zone and is propagated. You may just need to wait some time.

Also, have you seen this repost article? - Why is the CNAME record not resolving for my ACM issued certificate and the DNS validation status is still pending validation?

AWS
Akin
답변함 3달 전
  • The resources are in eu-west-3. I'm requesting the certificate via my cloudformation template and region can not be specified in declaration (the option does not exist). First succeeded attempt: all resources were in N. Virginia. I'm sure it must be possible to request a certificate in N. Virginia if the stacks are in another zone, right?

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠