Skip to content

Commit 77547f0

Browse files
Update main.bicep
1 parent 1d22b10 commit 77547f0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

infra/main.bicep

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ targetScope = 'resourceGroup'
66
@description('A unique prefix for all resources in this deployment. This should be 3-20 characters long:')
77
param environmentName string
88

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+
923
@minLength(1)
1024
@description('Location for the Content Understanding service deployment:')
1125
@allowed(['West US'

0 commit comments

Comments
 (0)