Home > Mobile >  CloudFormation stack stuck in 'Create-In'Progress'
CloudFormation stack stuck in 'Create-In'Progress'

Time:01-29

I have a cloudformation stack, which I am deploying to via my cdk package. My package contains 3 constructs (a Route53 hostedZone, a dnsValidationCertificate, and an IAM role). On a previous account, with the same stack, this took 5 minutes to deploy. However, my stack has been stuck on a 'Create In Progress' state for the past 3 hours, indicating something is definitely wrong. Is there something I could do?

CodePudding user response:

It sounds like the certificate is stuck in pending state waiting for domain ownership verification. Are you able to view your stuck stack in the AWS CloudFormation console, check Events, and inspect the Resources created?

https://docs.aws.amazon.com/acm/latest/userguide/domain-ownership-validation.html

  • Related