Skip to content

Commit 0dc923a

Browse files
added the northcentralus region
1 parent 7f03fb5 commit 0dc923a

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
rg_exists=$(az group exists --name ${{ env.RESOURCE_GROUP_NAME }})
9999
if [ "$rg_exists" = "false" ]; then
100100
echo "Resource group does not exist. Creating..."
101-
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location eastus || { echo "Error creating resource group"; exit 1; }
101+
az group create --name ${{ env.RESOURCE_GROUP_NAME }} --location northcentralus || { echo "Error creating resource group"; exit 1; }
102102
else
103103
echo "Resource group already exists."
104104
fi

infra/main.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ var replicaRegionPairs = {
4949
eastus: 'centralus'
5050
eastus2: 'centralus'
5151
japaneast: 'eastasia'
52+
northcentralus: 'southcentralus'
5253
northeurope: 'westeurope'
5354
southeastasia: 'eastasia'
5455
uksouth: 'westeurope'

infra/main_custom.bicep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ var replicaRegionPairs = {
4949
eastus: 'centralus'
5050
eastus2: 'centralus'
5151
japaneast: 'eastasia'
52+
northcentralus: 'southcentralus'
5253
northeurope: 'westeurope'
5354
southeastasia: 'eastasia'
5455
uksouth: 'westeurope'

0 commit comments

Comments
 (0)