Redis is not able to provision in North Europe but works in West Europe

Bryson Tai 45 Reputation points
2026-07-14T11:59:08.5+00:00

Hi community,

We are trying to provision Azure Managed Redis in North Europe, but it is not working, after some investigation. We found it is North Europe Data Center issue as we are deploy it to West Europe.

The failed Redis only return OperationFailed error, nothing meaningful here. I check the availability of the instance we selected, it is available in this region-zone.

Error Message

"statusMessage": "{\"status\":\"Failed\",\"error\":{\"code\":\"ResourceOperationFailure\",\"message\":\"The resource operation completed with terminal provisioning state 'Failed'.\",\"details\":[{\"code\":\"OperationFailed\",\"message\":\"The operation failed.\"}]}}",

Our Redis Configuration, works in West Europe

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "redisEnterprise_redis_name": {
            "defaultValue": "example-redis-name",
            "type": "String"
        }
    },
    "variables": {},
    "resources": [
        {
            "type": "Microsoft.Cache/redisEnterprise",
            "apiVersion": "2026-02-01-preview",
            "name": "[parameters('redisEnterprise_redis_name')]",
            "location": "North Europe",
            "sku": {
                "name": "Balanced_B1"
            },
            "kind": "v2",
            "identity": {
                "type": "None"
            },
            "properties": {
                "minimumTlsVersion": "1.2",
                "highAvailability": "Disabled",
                "publicNetworkAccess": "Enabled"
            }
        }
    ]
}

We need to deploy our infrastructure to North Europe, any idea how to make it feasible? Thanks.

Azure Cache for Redis
Azure Cache for Redis

An Azure service that provides access to a secure, dedicated Redis cache, managed by Microsoft.


3 answers

Sort by: Most helpful
  1. Smaran Thoomu 90 Reputation points Microsoft External Staff Moderator
    2026-07-16T09:20:19.3+00:00

    Hi Bryson Tai

    You're welcome!

    At the moment, there isn't a public Azure service that provides real-time resource capacity availability for specific SKUs or regions (for example, whether a particular Azure Managed Redis SKU has available capacity in North Europe).

    You can use the following Azure services to stay informed about the platform:

    • Azure Products by Region – This page shows whether an Azure service is available in a particular region, but it does not indicate current provisioning capacity or temporary capacity constraints. https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/table
    • Azure Service Health – Provides information about active service issues, planned maintenance, and health advisories affecting your subscription.
    • Azure Resource Health – Shows the health status of your deployed Azure resources.

    However, regional capacity constraints for resource provisioning are generally not exposed through these services. When capacity is exhausted, it is typically surfaced only during the provisioning operation (for example, through errors such as OperationFailed or CapacityNotAvailable).

    We understand that having visibility into regional capacity availability would be valuable, and we appreciate your feedback. We'll share this as a product improvement suggestion with the appropriate team for consideration.

    Thank you for your understanding.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. Simon Minotto 0 Reputation points
    2026-07-17T15:12:50.82+00:00

    I have the same issue, we can't create B3 or B6 or B20 in north europe, it's always failing :/

    Was this answer helpful?


  3. Christos Panagiotidis 3,301 Reputation points
    2026-07-14T15:55:00.18+00:00

    Hi Bryson, because the same template succeeds in West Europe, I would treat this as either regional capacity/feature availability or a preview API issue rather than a basic template error. First try the current stable API version and confirm that Balanced_B1, kind v2, and your requested availability settings are supported in North Europe for your subscription. Check Microsoft.Cache provider registration, quota, Resource Health, and the deployment operation details rather than only the top-level OperationFailed message. If the stable configuration still fails only in North Europe, keep the failed deployment/correlation ID and open a Redis support case; regional capacity failures usually need the service team to confirm or allocate capacity. Avoid repeated rapid deployments, as they can leave overlapping operations and make the evidence harder to read.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.