An Azure managed PostgreSQL database service for app development and deployment.
None of the solutions offered worked. Had to re-create the database from scratch.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Running into the following error when trying to scale up a Azure Database for PostgreSQL flexible server.
{
"code": "CapacityNotAvailable",
"message": "Capacity is not available in this region/zone. Please retry after some time."
}
All of the SKUs are available when I run az postgres flexible-server list-skus --location eastus
I also requested and was granted Region access quota in East US a while ago and was successful.
An Azure managed PostgreSQL database service for app development and deployment.
None of the solutions offered worked. Had to re-create the database from scratch.
Thanks for clarifying , completely understand that moving regions isn’t an option due to the VNet dependency.
Given everything you’ve already validated (multiple SKUs + CLI showing availability), this points to capacity pressure at the zone/cluster level within East US, not quota or SKU access.
Since you need to stay in the same region, you can try a few targeted workarounds:
Switch Availability Zone (or temporarily remove zone pinning, if configured)
Retry during different time windows, as capacity can fluctuate within the region
Also worth noting: even though SKUs appear available via CLI, they may not be available in the specific zone your server is currently allocated to, which is why all scale attempts can fail.
Hope this helps narrow it down a bit further.