aws cloudformation describe-stack-events
to retrieve the events for the CloudFormation stack. Look for any failed events or error messages that indicate the issue.
aws cloudformation update-stack
to update the CloudFormation stack with the modified template. Specify the stack name and the template file using the --stack-name
and --template-body
parameters respectively. This command will initiate the stack update process and apply the changes.
<stack-name>
with the actual name of the CloudFormation stack, and <template-file>
with the path to the modified template file.