如何修复 postgres 灵活服务器的 ProvisioningDisabled

如何修复 postgres 灵活服务器的 ProvisioningDisabled

我正在尝试创建一个灵活的 postgres 服务器,当我尝试时,eastus2 的配额已用完。因此我尝试了 centralindia,但出现以下错误。

Error: waiting for creation of the Postgresql Flexible Server "testaksk8s-del-postgres-del" (Resource Group "testaksk8s-del-postgres"): Code="ProvisioningDisabled" Message="Specified Availability Zone not supported in this region."
│   with azurerm_postgresql_flexible_server.example,
│   on 12-postgres.tf line 15, in resource "azurerm_postgresql_flexible_server" "example":
│   15: resource "azurerm_postgresql_flexible_server" "example" {

对于如何解决这个问题,有任何的建议吗?

答案1

答案就在您收到的错误中:

Specified Availability Zone not supported in this region.

并非所有区域都支持可用区。您可以查看哪些区域支持这里

编辑:我看到印度中部地区去年 12 月增加了 AZ 支持,所以理论上这应该可行。我想知道那里现在是否存在 AZ 问题。

相关内容