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
Kristóf Torma 6d631b1140
Some checks failed
continuous-integration/drone/push Build is failing
add cosmos memes
2022-08-01 22:09:46 +02:00

19 lines
597 B
HCL

resource "azurerm_cosmosdb_account" "cosmodb" {
name = "cosmosdb"
location = azurerm_resource_group.rg-cosmostest-staticwebapp-cosmosdb.location
resource_group_name = azurerm_resource_group.rg-cosmostest-staticwebapp.name
offer_type = "Standard"
kind = "GlobalDocumentDB"
enable_free_tier = true
consistency_policy {
consistency_level = "BoundedStaleness"
max_interval_in_seconds = 300
max_staleness_prefix = 100000
}
geo_location {
location = azurerm_resource_group.rg-cosmostest-staticwebapp-cosmosdb.location
failover_priority = 0
}
}