Skip to content

Commit dc8b5b9

Browse files
azure-sdkbenbp
andauthored
Use westus as default region in test resource deployments (Azure#22309)
Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
1 parent f2ca664 commit dc8b5b9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eng/common/TestResources/New-TestResources.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ try {
401401
# string.
402402
if (!$Location) {
403403
$Location = @{
404-
'AzureCloud' = 'westus2';
404+
'AzureCloud' = 'westus';
405405
'AzureUSGovernment' = 'usgovvirginia';
406406
'AzureChinaCloud' = 'chinaeast2';
407407
'Dogfood' = 'westus'
@@ -907,7 +907,7 @@ This is used for CI automation.
907907
Optional location where resources should be created. If left empty, the default
908908
is based on the cloud to which the template is being deployed:
909909
910-
* AzureCloud -> 'westus2'
910+
* AzureCloud -> 'westus'
911911
* AzureUSGovernment -> 'usgovvirginia'
912912
* AzureChinaCloud -> 'chinaeast2'
913913
* Dogfood -> 'westus'

eng/common/TestResources/New-TestResources.ps1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ Optional location where resources should be created.
422422
If left empty, the default
423423
is based on the cloud to which the template is being deployed:
424424
425-
* AzureCloud -\> 'westus2'
425+
* AzureCloud -\> 'westus'
426426
* AzureUSGovernment -\> 'usgovvirginia'
427427
* AzureChinaCloud -\> 'chinaeast2'
428428
* Dogfood -\> 'westus'

eng/common/TestResources/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ${env:KEYVAULT_CLIENT_ID} = '<<secret>>'
4949
${env:KEYVAULT_CLIENT_SECRET} = '<<secret>>'
5050
${env:KEYVAULT_SUBSCRIPTION_ID} = 'YOUR SUBSCRIPTION ID'
5151
${env:KEYVAULT_RESOURCE_GROUP} = 'rg-myusername'
52-
${env:KEYVAULT_LOCATION} = 'westus2'
52+
${env:KEYVAULT_LOCATION} = 'westus'
5353
${env:KEYVAULT_SKU} = 'premium'
5454
${env:AZURE_KEYVAULT_URL} = '<<url>>'
5555
```

0 commit comments

Comments
 (0)