An Azure relational database service.
Hi @Ali Mehmood ,
It sounds like you’re running into the Zone redundancy toggle being disabled (grayed out) in the Azure portal for an Azure SQL Managed Instance in East US 2, even though you believe the region is supposed to support it.
Based on the provided documentation, this usually happens for one of a few specific reasons—most notably backup storage redundancy not being set to the required zonal/geo-zonal type, or the instance being in an unsupported configuration (instance pool / unsupported tier / etc.), even if the region is generally listed as supported.
Why the “Zone redundancy” option may be disabled
Here are the documented checks that control whether the portal shows or allows enabling zone redundancy:
- Backup storage redundancy isn’t set correctly (most common)
To enable zone redundancy for SQL Managed Instance, Backup storage redundancy must be:
- Zone-redundant (ZRS), or
- Geo-zone-redundant (GZRS)
If your instance’s Backup storage redundancy is not set to ZRS/GZRS, then the zone redundancy option may not appear or cannot be enabled in the portal.
What to do (portal):
- Go to your SQL Managed Instance
- Settings → Compute + storage
- Ensure Backup storage redundancy is set to Zone-redundant or Geo-zone-redundant
Apply changes, wait for completion, then refresh the page and try enabling Zone redundancy again
- The instance is in an instance pool
If the managed instance is part of an instance pool, it does not support zone redundancy. In that case, the toggle will be disabled/unavailable.
- Service tier limitation (Next-gen General Purpose)
Zone redundancy is not currently available for the Next-gen General Purpose service tier.
So if your instance is on that tier, the portal won’t allow enabling zone redundancy.
- Regional/temporary platform/capacity constraints (even if “supported”)
Even with region support listed, there are situations where zone redundancy can be temporarily disabled per region due to capacity constraints or temporary platform updates. In such cases, the feature may be unavailable/disabled in the portal.
Enabling zone redundancy on an existing instance (once prerequisites are met)
Once the prerequisites above are satisfied, zone redundancy for an existing SQL Managed Instance can be enabled using the Azure portal (or PowerShell/Azure CLI/REST), and the change runs as a fully online scaling operation in the background.
Portal flow (existing instance):
- Set Backup storage redundancy to Zone-redundant (ZRS) or Geo-zone-redundant (GZRS)
- Then use the Zone redundancy toggle under Compute hardware
Save/apply and wait for the operation to complete
If you still can’t enable it
If after confirming backup redundancy, not in an instance pool, and a supported tier, the toggle is still unavailable, then it’s likely temporarily unavailable in that region (capacity/platform constraints).
The docs recommend these supported alternatives for high availability/disaster recovery:
- Use Failover Groups (including cross-region HA)
- Deploy to a different region that supports zone redundancy
- Consider other supported options like LTR backups for additional protection
Reference list (from provided documentation)
- Configure zone redundancy in Azure SQL Managed Instance (considerations + prerequisites) https://learn.microsoft.com/azure/azure-sql/managed-instance/instance-zone-redundancy-configure?view=azuresql&tabs=azure-portal#considerations
- Configure zone redundancy (existing instance, portal steps) https://learn.microsoft.com/azure/azure-sql/managed-instance/instance-zone-redundancy-configure?view=azuresql&tabs=azure-portal#existing-instance
- Configure zone redundancy (supported regions pointer) https://learn.microsoft.com/azure/azure-sql/managed-instance/instance-zone-redundancy-configure#supported-regions
- Supported alternatives like Failover Groups https://learn.microsoft.com/azure/azure-sql/managed-instance/failover-group-sql-mi?view=azuresql
Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help.