You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: infra/main.bicep
+79-39Lines changed: 79 additions & 39 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,38 @@
1
1
@description('Location for all resources.')
2
-
paramlocationstring = 'EastUS2'//Fixed for model availability, change back to resourceGroup().location
3
-
4
-
@description('Location for OpenAI resources.')
5
-
paramazureOpenAILocationstring = 'japaneast'//Fixed for model availability
6
-
7
-
8
-
9
-
@description('A prefix to add to the start of all resource names. Note: A "unique" suffix will also be added')
10
-
paramprefixstring = 'macaeo'
2
+
paramlocationstring
3
+
4
+
@allowed([
5
+
'australiaeast'
6
+
'brazilsouth'
7
+
'canadacentral'
8
+
'canadaeast'
9
+
'eastus'
10
+
'eastus2'
11
+
'francecentral'
12
+
'germanywestcentral'
13
+
'japaneast'
14
+
'koreacentral'
15
+
'northcentralus'
16
+
'norwayeast'
17
+
'polandcentral'
18
+
'southafricanorth'
19
+
'southcentralus'
20
+
'southindia'
21
+
'swedencentral'
22
+
'switzerlandnorth'
23
+
'uaenorth'
24
+
'uksouth'
25
+
'westeurope'
26
+
'westus'
27
+
'westus3'
28
+
])
29
+
@description('Location for all Ai services resources. This location can be different from the resource group location.')
30
+
paramazureOpenAILocationstring// The location used for all deployed resources. This location must be in the same region as the resource group.
31
+
32
+
@minLength(3)
33
+
@maxLength(20)
34
+
@description('Prefix for all resources created by this template. This prefix will be used to create unique names for all resources. The prefix must be unique within the resource group.')
35
+
paramprefixstring
11
36
12
37
@description('Tags to apply to all deployed resources')
0 commit comments