Skip to content

CloudFormation updates failing / hanging in me-south-1 (Bahrain) since March 2026 , related to me-central-1 issue?

0

We are experiencing ongoing issues with CloudFormation and EC2 control plane operations in me-south-1 (Bahrain) since mid-March 2026.

CloudFormation issues:

Multiple stacks failing or stuck: 2 stacks ended in UPDATE_ROLLBACK_COMPLETE (March 16 and March 28) 1 stack stuck in UPDATE_IN_PROGRESS for several hours with no progress Resource involved: CloudFront Function Cannot cancel via console or CLI (both hang)

Also it showing this error Internal Failure

Concern:

AWS Health Dashboard shows an active advisory for me-central-1 (UAE) No corresponding advisory for me-south-1 (Bahrain)

Is me-south-1 affected by the same underlying issue as me-central-1? Is there any way to force-cancel a CloudFormation stack stuck in UPDATE_IN_PROGRESS when both CLI and console are unresponsive?

  • AWS has been telling everyone in the ME regions for a month that they should move workloads out of those regions due to the damage of drain strikes to the regions and the infrastructure around them.

2 Answers
0

I understand you're experiencing significant CloudFormation issues in me-south-1, but I need to clarify that I cannot provide information about events dated March 2026, as that is in the future and beyond my knowledge cutoff.

Regarding your immediate technical concerns about stuck CloudFormation stacks:

For stacks stuck in UPDATE_IN_PROGRESS: When a stack update is hanging, you can attempt to cancel it using the AWS CLI command aws cloudformation cancel-update-stack --stack-name [your-stack-name]. However, you've mentioned this is also hanging in your case.

For stacks in UPDATE_ROLLBACK_FAILED state: If your stacks have rolled back but are in a failed rollback state, you can use the continue-update-rollback command to attempt to complete the rollback process. This command helps return the stack to a working state (UPDATE_ROLLBACK_COMPLETE) by continuing the rollback operation. You can also specify resources to skip during the rollback if certain resources are causing the failure (for example, if a resource was deleted outside of CloudFormation).

Important limitations: I cannot confirm any relationship between issues in me-south-1 and me-central-1, nor can I provide information about current or future AWS service health events. For real-time service health information and region-specific advisories, you should consult the AWS Health Dashboard directly or contact AWS Support, who can investigate whether there are underlying infrastructure issues affecting your region and provide guidance specific to your situation.

If standard cancellation methods are unresponsive, AWS Support would be your best resource for potential escalation options or manual intervention.
Sources
Use CancelUpdateStack with a CLI - AWS SDK Code Examples
continue-update-rollback — AWS CLI 2.27.41 Command Reference
Use ContinueUpdateRollback with a CLI - AWS SDK Code Examples

answered 2 months ago
  • getting this error This AWS::CloudFront::Function resource is in a UPDATE_FAILED state.

    Internal Failure

0

Is me-south-1 affected by the same issue as me-central-1?

Yes. AWS Health advisory confirms impairment in one AZ in me-south-1 (Bahrain) as part of the same ongoing event affecting me-central-1.

How to force-cancel a stuck stack (CLI)

If standard cancel fails, try:

# Attempt cancel
aws cloudformation cancel-update-stack --stack-name <stack-name> --region me-south-1

# If stuck in UPDATE_IN_PROGRESS, check stack events
aws cloudformation describe-stack-events --stack-name <stack-name> --region me-south-1
answered a month ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.