-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathdeploy.json
More file actions
45 lines (43 loc) · 1.5 KB
/
deploy.json
File metadata and controls
45 lines (43 loc) · 1.5 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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"accounts_sansinhtest19871_name": {
"defaultValue": "sansinhtest199919",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.CognitiveServices/accounts",
"apiVersion": "2024-10-01",
"name": "[parameters('accounts_sansinhtest19871_name')]",
"location": "eastus",
"sku": {
"name": "S0"
},
"kind": "AIServices",
"identity": {
"type": "SystemAssigned"
},
"properties": {
"allowProjectManagement": true,
"customSubDomainName": "[parameters('accounts_sansinhtest19871_name')]",
"networkAcls": {
"defaultAction": "Allow",
"virtualNetworkRules": [],
"ipRules": []
},
"publicNetworkAccess": "Enabled",
"networkInjections":[
{
"scenario": "agent",
"subnetArmId" : "/subscriptions/a9216f37-b90e-4db2-b844-b171e5394fc1/resourceGroups/sansinhtest/providers/Microsoft.Network/virtualNetworks/sansinheert/subnets/default",
"useMicrosoftManagedNetwork": false
}
]
}
}
]
}