Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use north europe as default region as eastus doesn't have enough resource #407

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading