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

[Serial-Console] Fix pair mapping region for eastus to westus #6231

Merged
merged 12 commits into from
Jun 1, 2023
4 changes: 4 additions & 0 deletions src/serial-console/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release History
===============

0.1.6
++++++
* Fix pair region mapping for eastus to westus

0.1.5
++++++
* Fix resource group for custom storage account
Expand Down
2 changes: 2 additions & 0 deletions src/serial-console/azext_serialconsole/_arm_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class ArmEndpoints: # pylint: disable=too-few-public-methods
'centralus': 'westcentralus',
'centraluseuap': 'eastus2euap',
'eastasia': 'southeastasia',
'eastus': 'westus',
'eastus2': 'westus2', # pairing eastus2 + westus2 ensure that INT works as expected
'eastus2euap': 'centraluseuap',
'francecentral': 'francesouth',
Expand All @@ -41,6 +42,7 @@ class ArmEndpoints: # pylint: disable=too-few-public-methods
'ukwest': 'uksouth',
'westcentralus': 'centralus',
'westeurope': 'northeurope',
'westus': 'eastus',
'westus2': 'eastus2',
'usgovarizona': 'usgoveast', # usgoveast == usgovvirginia
'usgovvirginia': 'usgovsw', # usgovsw == usgovarizona
Expand Down
Loading