From 9d6537a874800d9e1f9245e4387df0095617df10 Mon Sep 17 00:00:00 2001 From: Jen Sheerin Date: Wed, 13 Mar 2024 01:10:24 -0400 Subject: [PATCH] modify regions --- examples/default/locals.tf | 11 +++++++++-- examples/diagnostic/locals.tf | 36 +++++++++++++++++------------------ 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/examples/default/locals.tf b/examples/default/locals.tf index aac8330..eb84637 100644 --- a/examples/default/locals.tf +++ b/examples/default/locals.tf @@ -1,16 +1,23 @@ # We pick a random region from this list. locals { azure_regions = [ + "ukwest", + "uksouth", + "centralindia", + "australiaeast", + "canadacentral", + "canadaeast", + "japaneast", "westeurope", "northeurope", "eastus", "eastus2", "westus", "westus2", + "westus3", "southcentralus", "northcentralus", "centralus", - "eastasia", - "southeastasia", + "westcentralus" ] } diff --git a/examples/diagnostic/locals.tf b/examples/diagnostic/locals.tf index 83256df..eb84637 100644 --- a/examples/diagnostic/locals.tf +++ b/examples/diagnostic/locals.tf @@ -1,23 +1,23 @@ # We pick a random region from this list. locals { azure_regions = [ - "Australia East", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East US", - "East US 2", - "Japan East", - "North Central US", - "North Europe", - "South Central US", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West US", - "West US 2", - "West US 3" + "ukwest", + "uksouth", + "centralindia", + "australiaeast", + "canadacentral", + "canadaeast", + "japaneast", + "westeurope", + "northeurope", + "eastus", + "eastus2", + "westus", + "westus2", + "westus3", + "southcentralus", + "northcentralus", + "centralus", + "westcentralus" ] }