An Azure managed MySQL database service for app development and deployment.
It sounds like you’ve run into the classic “Provisioning in requested region isn’t supported” error when creating a MySQL Flexible Server. This usually means one of three things:
- Your subscription isn’t registered to use the MySQL resource provider.
- That Azure region either isn’t enabled on your subscription or is out of capacity for the SKU you’re requesting.
- There’s a hard restriction preventing new MySQL Flexible Servers in that region.
Here’s what you can try:
Register the MySQL Resource Provider • In the Azure Portal go to All Services → Subscriptions → select your subscription → Resource Providers → search for “Microsoft.DBForMySQL” → click Register. • Or via CLI:
az provider register --namespace Microsoft.DBForMySQL
Confirm the region is supported and has capacity • Check the list of supported Azure regions for MySQL Flexible Server. East US & East US 2 should be available, but if there’s a temporary capacity shortage you’ll see this error. • If you need zone-redundant high availability, make sure the region you choose supports it (it doubles the cost, but gives you a 99.99% SLA).
- If the region isn’t enabled on your subscription or is at capacity, open a support ticket • In the Azure Portal go to Help + support → New support request → Issue type: “Service and subscription limits (quotas)” → Request enabling the region or increasing capacity (vCores/DTUs) for MySQL Flexible Server in East US/East US 2. • Once Microsoft enables the region or grants more quota, retry your deployment.
- (Optional) Try a different region • If you need a quick workaround, pick another supported region (e.g., West US 2, Central US, West US 3) that you know is enabled on your subscription.
Hope that helps! Let us know if you still run into issues after registering the provider and/or opening a support ticket.
Reference list
- Resolve capacity errors for Azure Database for MySQL Flexible Server https://learn.microsoft.com/azure/mysql/flexible-server/resolve-capacity-errors?tabs=portal
- Azure regions for MySQL Flexible Server https://learn.microsoft.com/azure/mysql/flexible-server/overview#azure-regions
- File a support request to enable a region or increase quotas https://ms.portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade