From eccf87e08cd3fb746e723c69a46bcedf5522658b Mon Sep 17 00:00:00 2001 From: Aymeric Weinbach <397730+zecloud@users.noreply.github.com> Date: Thu, 14 Mar 2024 05:22:39 +0100 Subject: [PATCH] swedencentral is missing in possible Locations for Azure Open Ai (#300) ## Purpose * ... ## Does this introduce a breaking change? ``` [ ] Yes [x ] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? ``` [ x] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information --------- Co-authored-by: Anthony Shaw --- infra/main.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/main.bicep b/infra/main.bicep index 1700ca7f..eb1225ea 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -11,7 +11,7 @@ param location string param tags string = '' @description('Location for the OpenAI resource group') -@allowed([ 'canadaeast', 'westus', 'eastus', 'eastus2', 'francecentral', 'switzerlandnorth', 'uksouth', 'japaneast', 'northcentralus', 'australiaeast' ]) +@allowed([ 'canadaeast', 'westus', 'eastus', 'eastus2', 'francecentral', 'swedencentral', 'switzerlandnorth', 'uksouth', 'japaneast', 'northcentralus', 'australiaeast' ]) @metadata({ azd: { type: 'location'