Skip to content

Commit 0358d45

Browse files
authored
Add australiaeast to allowed locations for OpenAI (#259)
## Purpose To add `australiaeast` to allowed locations for OpenAI - this is now generally available according to https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=cognitive-services&regions=australia-central,australia-central-2,australia-east,australia-southeast ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [x] No ``` ## Pull Request Type <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [x] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test Run `azd up` and choose `australiaeast`
1 parent 64a4bcd commit 0358d45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ param location string
1111
param tags string = ''
1212

1313
@description('Location for the OpenAI resource group')
14-
@allowed([ 'canadaeast', 'eastus', 'eastus2', 'francecentral', 'switzerlandnorth', 'uksouth', 'japaneast', 'northcentralus' ])
14+
@allowed([ 'canadaeast', 'eastus', 'eastus2', 'francecentral', 'switzerlandnorth', 'uksouth', 'japaneast', 'northcentralus', 'australiaeast' ])
1515
@metadata({
1616
azd: {
1717
type: 'location'

0 commit comments

Comments
 (0)