This repository has been archived on 2023-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
cloud-resources/azure-cosmosdb.tf

19 lines
558 B
Terraform
Raw Normal View History

2022-08-01 22:09:46 +02:00
resource "azurerm_cosmosdb_account" "cosmodb" {
2022-09-30 00:22:47 +02:00
name = "cosmosdbtorma"
2022-08-01 22:56:22 +02:00
location = azurerm_resource_group.rg-cosmostest-cosmosdb.location
resource_group_name = azurerm_resource_group.rg-cosmostest-cosmosdb.name
2022-08-01 22:09:46 +02:00
offer_type = "Standard"
kind = "GlobalDocumentDB"
enable_free_tier = true
consistency_policy {
2022-09-30 00:33:26 +02:00
consistency_level = "Session"
max_interval_in_seconds = 5
max_staleness_prefix = 100
2022-08-01 22:09:46 +02:00
}
geo_location {
2022-08-01 22:58:49 +02:00
location = azurerm_resource_group.rg-cosmostest-cosmosdb.location
2022-08-01 22:09:46 +02:00
failover_priority = 0
}
}