-
Notifications
You must be signed in to change notification settings - Fork 191
/
azuredeploy.json
57 lines (57 loc) · 1.77 KB
/
azuredeploy.json
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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"accounts_service_luis_1_name": {
"defaultValue": "service-luis-1",
"type": "String"
},
"apiType": {
"type": "string",
"defaultValue":"LUIS"
},
"sku": {
"type": "string",
"allowedValues": [
"F0",
"S0"
],
"defaultValue": "F0"
},
"location": {
"type": "string",
"allowedValues": [
"australiaeast",
"brazilsouth",
"eastasia",
"eastus",
"eastus2",
"northeurope",
"southcentralus",
"southeastasia",
"westcentralus",
"westus",
"westus2",
"westeurope"
],
"defaultValue": "westus"
}
},
"variables": {},
"resources": [
{
"comments": "Generalized from resource: '/subscriptions/b3676f46-596e-4d94-a6be-1652d1d3cfe4/resourceGroups/resourcegroup1/providers/Microsoft.CognitiveServices/accounts/service-luis-1'.",
"type": "Microsoft.CognitiveServices/accounts",
"sku": {
"name": "[parameters('sku')]"
},
"kind": "LUIS",
"name": "[parameters('accounts_service_luis_1_name')]",
"apiVersion": "2016-02-01-preview",
"location": "[parameters('location')]",
"scale": null,
"properties": {},
"dependsOn": []
}
]
}