-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathazuredeploy.json
More file actions
77 lines (77 loc) · 2.08 KB
/
Copy pathazuredeploy.json
File metadata and controls
77 lines (77 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.39.26.7824",
"templateHash": "4687470877814835157"
}
},
"parameters": {
"aiFoundryName": {
"type": "string",
"defaultValue": "foundry-name"
},
"aiProjectName": {
"type": "string",
"defaultValue": "[format('{0}-proj', parameters('aiFoundryName'))]"
},
"location": {
"type": "string",
"defaultValue": "eastus2"
}
},
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2025-06-01",
"name": "[parameters('aiFoundryName')]",
"location": "[parameters('location')]",
"identity": {
"type": "SystemAssigned"
},
"sku": {
"name": "S0"
},
"kind": "AIServices",
"properties": {
"allowProjectManagement": true,
"customSubDomainName": "[parameters('aiFoundryName')]",
"disableLocalAuth": false
}
},
{
"type": "Microsoft.CognitiveServices/accounts/projects",
"apiVersion": "2025-06-01",
"name": "[format('{0}/{1}', parameters('aiFoundryName'), parameters('aiProjectName'))]",
"location": "[parameters('location')]",
"identity": {
"type": "SystemAssigned"
},
"properties": {},
"dependsOn": [
"[resourceId('Microsoft.CognitiveServices/accounts', parameters('aiFoundryName'))]"
]
},
{
"type": "Microsoft.CognitiveServices/accounts/deployments",
"apiVersion": "2025-06-01",
"name": "[format('{0}/{1}', parameters('aiFoundryName'), 'gpt-4.1-mini')]",
"sku": {
"capacity": 1,
"name": "GlobalStandard"
},
"properties": {
"model": {
"name": "gpt-4.1-mini",
"format": "OpenAI",
"version": "2025-04-14"
}
},
"dependsOn": [
"[resourceId('Microsoft.CognitiveServices/accounts', parameters('aiFoundryName'))]"
]
}
]
}