File tree 2 files changed +7
-0
lines changed
modules/azurerm/Cosmos-Database-Account
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ resource "azurerm_cosmosdb_account" "cosmos_db_account" {
21
21
enable_multiple_write_locations = var. enable_multiple_write_locations
22
22
enable_automatic_failover = length (local. geo_locations ) == 1 ? false : var. enable_automatic_failover
23
23
is_virtual_network_filter_enabled = var. is_virtual_network_filter_enabled
24
+ analytical_storage_enabled = var. analytical_storage_enabled
24
25
25
26
dynamic "geo_location" {
26
27
for_each = local. geo_locations
Original file line number Diff line number Diff line change @@ -136,3 +136,9 @@ variable "backup_storage_redundancy" {
136
136
description = " The backup storage redundancy for the Cosmos DB account."
137
137
type = string
138
138
}
139
+
140
+ variable "analytical_storage_enabled" {
141
+ default = false
142
+ description = " Enable Analytical Storage option for the Cosmos DB account"
143
+ type = bool
144
+ }
You can’t perform that action at this time.
0 commit comments