We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d22b10 commit 77547f0Copy full SHA for 77547f0
infra/main.bicep
@@ -6,6 +6,20 @@ targetScope = 'resourceGroup'
6
@description('A unique prefix for all resources in this deployment. This should be 3-20 characters long:')
7
param environmentName string
8
9
+@minLength(1)
10
+@description('Location for all resources')
11
+// Look for desired models on the availability table:
12
+// https://learn.microsoft.com/azure/ai-services/openai/concepts/models#global-standard-model-availability
13
+@allowed([
14
+ 'eastus'
15
+ 'eastus2'
16
+ 'westeurope'
17
+ 'westus'
18
+ 'westus3'
19
+])
20
+@default('eastus')
21
+param location string
22
+
23
@minLength(1)
24
@description('Location for the Content Understanding service deployment:')
25
@allowed(['West US'
0 commit comments