Skip to content

Commit

Permalink
use north europe as default region as eastus doesn't have enough reso…
Browse files Browse the repository at this point in the history
…urce.
  • Loading branch information
lonegunmanb committed Jan 13, 2025
1 parent c049ff6 commit 2ee59fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion quickstart/101-cosmos-db-autoscale/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ terraform {
}

provider "azurerm" {
features {}
features {
resource_group {
prevent_deletion_if_contains_resources = false
}
}
}
4 changes: 2 additions & 2 deletions quickstart/101-cosmos-db-autoscale/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "prefix" {

variable "location" {
type = string
default = "eastus"
default = "North Europe"
description = "Resource group location"
}

Expand All @@ -18,7 +18,7 @@ variable "cosmosdb_account_name" {

variable "cosmosdb_account_location" {
type = string
default = "eastus"
default = "North Europe"
description = "Cosmos db account location"
}

Expand Down

0 comments on commit 2ee59fe

Please sign in to comment.