无法在 terraform cosmosdb 中指定备份
unable to sepcify backup in terraform cosmodb
我正在使用 terraform 创建 CosmoDB,我的构建使用 azurerm 2.56.0
resource "azurerm_cosmosdb_account" "testaccount" {
name = "testaccount"
location = var.location
resource_group_name = var.rgname
offer_type = "Standard"
Kind = "GlobalDocumentDB"
enable_automatic_failover = false
consistent_policy {
consistency_level = "Session"
}
backup {
type = "Periodic"
interval_in_minutes = "120"
retention_in_hours = "14"
}
}
我收到以下错误
错误:不支持的块类型
当我注释掉备份部分时,它工作正常。
我检查了 cosmosdb 帐户 https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/cosmosdb_account#backup
看来我已经正确声明了。我还检查过这个版本的 azurerm 支持备份
我可能遗漏了一些明显的东西,有人看到问题出在哪里了吗?
谢谢
旦
backup
在 2.56.0
中 不支持 。您正在查看较新的文档。对于您的版本,文档是 here.
如果您想使用 backup
,您必须升级您的供应商。
我正在使用 terraform 创建 CosmoDB,我的构建使用 azurerm 2.56.0
resource "azurerm_cosmosdb_account" "testaccount" {
name = "testaccount"
location = var.location
resource_group_name = var.rgname
offer_type = "Standard"
Kind = "GlobalDocumentDB"
enable_automatic_failover = false
consistent_policy {
consistency_level = "Session"
}
backup {
type = "Periodic"
interval_in_minutes = "120"
retention_in_hours = "14"
}
}
我收到以下错误 错误:不支持的块类型
当我注释掉备份部分时,它工作正常。 我检查了 cosmosdb 帐户 https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/cosmosdb_account#backup
看来我已经正确声明了。我还检查过这个版本的 azurerm 支持备份
我可能遗漏了一些明显的东西,有人看到问题出在哪里了吗? 谢谢 旦
backup
在 2.56.0
中 不支持 。您正在查看较新的文档。对于您的版本,文档是 here.
如果您想使用 backup
,您必须升级您的供应商。