This commit is contained in:
Pablo Iñigo Blasco 2019-10-05 17:01:55 +02:00
Родитель e77cf27d2e
Коммит 989a316cd6
1 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -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": {}
}
]
}