Hello Anthony Diaz,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you are getting message "MySQL flexible server is not available for your selection of subscription and location." when trying to create new WordPress site.
To resolve the core issue immediately:
- Verify subscription/provider registration by using Azure CLI
az provider list --namespace Microsoft.DBforMySQL --query "[].registrationState"az provider register --namespace Microsoft.DBforMySQL
https://learn.microsoft.com/en-us/azure/mysql/flexible-server/how-to-troubleshoot-common-errors and https://docs.azure.cn/en-us/mysql/flexible-server/how-to-troubleshoot-cli-errors gives more details.
- Refer to region-specific quotas via Azure region capacity use CLI:
`az mysql flexible-server list-skus --location eastus --query "[? tier!='Disabled']"` If none return, the region is unavailable. - If unavailable submit a quota request, In Azure portal > Help + support > Quotas > Azure DB for MySQL Flexible Server > select East US cores. - https://github.com/MicrosoftDocs/azure-databases-docs/blob/main/articles/mysql/flexible-server/how-to-troubleshoot-common-errors.md
- Immediate workaround is to choose areas with capacity, e.g., West US 3 or North Europe - see guides on this platform here https://learn.microsoft.com/en-us/answers/questions/5635323/cant-create-mysql-flexible-server, and https://learn.microsoft.com/en-us/answers/questions/5606251/getting-message-mysql-flexible-server-is-not-avail Then, deploy identical resources there, then replicate or migrate as needed (e.g., using
mysqldump). - If WordPress App Service and MySQL are region-dependent, consider:
- VNet peering between AppService and MySQL in another region
- Use cross-region read replicas or a geo-replicated server
- If relying on East US monitor and wait by:
- Subscribe to Azure Service Health, Resource Health alerts
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.