aws cloudformation debugging command
Here is a handy command to get some identify issues with cloudformation. You will just need to plug in the name of your stack and region.
aws cloudformation describe-stack-events
--stack-name appStack --query
"StackEvents[?ResourceStatus=='CREATE_FAILED'].[LogicalResourceId, ResourceStatusReason]"
--region ap-southeast-2 --output text
Comments