basic azure template
This commit is contained in:
Родитель
e77cf27d2e
Коммит
989a316cd6
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
||||
"contentVersion": "1.0.0.0",
|
||||
"parameters": {
|
||||
"accounts_robotics_luis_name": {
|
||||
"defaultValue": "robotics-luis",
|
||||
"type": "String"
|
||||
}
|
||||
},
|
||||
"variables": {},
|
||||
"resources": [
|
||||
{
|
||||
"type": "Microsoft.CognitiveServices/accounts",
|
||||
"apiVersion": "2017-04-18",
|
||||
"name": "[parameters('accounts_robotics_luis_name')]",
|
||||
"location": "westus",
|
||||
"sku": {
|
||||
"name": "F0"
|
||||
},
|
||||
"kind": "LUIS",
|
||||
"properties": {}
|
||||
}
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче