Skip to content

Commit

Permalink
Update Azure location codes to use country-specific identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
tjementum committed Jan 26, 2025
1 parent 94a34a1 commit 058abb8
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions developer-cli/Commands/ConfigureContinuousDeploymentsCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -918,51 +918,51 @@ private static Dictionary<string, string> GetAzureLocations()
// Location Acronyms are taken from here https://learn.microsoft.com/en-us/azure/backup/scripts/geo-code-list
return new Dictionary<string, string>
{
{ "Australia Central", "acl" },
{ "Australia Central 2", "acl2" },
{ "Australia East", "ae" },
{ "Australia Southeast", "ase" },
{ "Brazil South", "brs" },
{ "Brazil Southeast", "bse" },
{ "Canada Central", "cnc" },
{ "Canada East", "cne" },
{ "Central India", "inc" },
{ "Central US", "cus" },
{ "East Asia", "ea" },
{ "East US", "eus" },
{ "East US 2", "eus2" },
{ "France Central", "frc" },
{ "France South", "frs" },
{ "Germany North", "gn" },
{ "Germany West Central", "gwc" },
{ "Japan East", "jpe" },
{ "Japan West", "jpw" },
{ "Jio India Central", "jic" },
{ "Jio India West", "jiw" },
{ "Korea Central", "krc" },
{ "Korea South", "krs" },
{ "North Central US", "ncus" },
{ "North Europe", "ne" },
{ "Norway East", "nwe" },
{ "Norway West", "nww" },
{ "South Africa North", "san" },
{ "South Africa West", "saw" },
{ "South Central US", "scus" },
{ "South India", "ins" },
{ "Southeast Asia", "sea" },
{ "Sweden Central", "sdc" },
{ "Switzerland North", "szn" },
{ "Switzerland West", "szw" },
{ "UAE Central", "uac" },
{ "UAE North", "uan" },
{ "UK South", "uks" },
{ "UK West", "ukw" },
{ "West Central US", "wcus" },
{ "West Europe", "we" },
{ "West India", "inw" },
{ "West US", "wus" },
{ "West US 2", "wus2" },
{ "West US 3", "wus3" }
{ "Australia Central", "au" },
{ "Australia Central 2", "au" },
{ "Australia East", "au" },
{ "Australia Southeast", "au" },
{ "Brazil South", "br" },
{ "Brazil Southeast", "br" },
{ "Canada Central", "ca" },
{ "Canada East", "ca" },
{ "Central India", "in" },
{ "Central US", "us" },
{ "East Asia", "as" },
{ "East US", "us" },
{ "East US 2", "us" },
{ "France Central", "eu" },
{ "France South", "eu" },
{ "Germany North", "eu" },
{ "Germany West Central", "eu" },
{ "Japan East", "jp" },
{ "Japan West", "jp" },
{ "Jio India Central", "in" },
{ "Jio India West", "in" },
{ "Korea Central", "kr" },
{ "Korea South", "kr" },
{ "North Central US", "us" },
{ "North Europe", "eu" },
{ "Norway East", "no" },
{ "Norway West", "no" },
{ "South Africa North", "za" },
{ "South Africa West", "za" },
{ "South Central US", "us" },
{ "South India", "in" },
{ "Southeast Asia", "as" },
{ "Sweden Central", "eu" },
{ "Switzerland North", "ch" },
{ "Switzerland West", "ch" },
{ "UAE Central", "ae" },
{ "UAE North", "ae" },
{ "UK South", "uk" },
{ "UK West", "uk" },
{ "West Central US", "us" },
{ "West Europe", "eu" },
{ "West India", "in" },
{ "West US", "us" },
{ "West US 2", "us" },
{ "West US 3", "us" }
};
}
}
Expand Down

0 comments on commit 058abb8

Please sign in to comment.