Skip to content

Commit

Permalink
fix failing builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nellyk committed Mar 5, 2024
1 parent be82331 commit daeb296
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "naming" {

# This is required for resource modules
resource "azurerm_resource_group" "this" {
location = "East US"
location = "East US 2"
name = module.naming.resource_group.name_unique
}

Expand Down
2 changes: 1 addition & 1 deletion examples/with_availability_zone/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module "naming" {

# This is required for resource modules
resource "azurerm_resource_group" "this" {
location = "East US"
location = "East US 2"
name = module.naming.resource_group.name_unique
}

Expand Down
2 changes: 1 addition & 1 deletion examples/without_availability_zone/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module "naming" {

# This is required for resource modules
resource "azurerm_resource_group" "this" {
location = "West Central US"
location = "West US"
name = module.naming.resource_group.name_unique
}

Expand Down

0 comments on commit daeb296

Please sign in to comment.