Skip to content

Instantly share code, notes, and snippets.

@negativeeddy
Created June 25, 2019 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save negativeeddy/0d6458daee5884bd2167f54f42c7d587 to your computer and use it in GitHub Desktop.
Save negativeeddy/0d6458daee5884bd2167f54f42c7d587 to your computer and use it in GitHub Desktop.
Virtual Assistant parameters template that uses free or least expensive resources
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"appInsightsLocation": {
"value": "westus2"
},
"contentModeratorLocation": {
"value": "westus"
},
"luisServiceLocation": {
"value": "westus"
},
"qnaServiceLocation": {
"value": "westus"
},
"qnaMakerSearchSku": {
"value": "free"
},
"qnaMakerServiceSku": {
"value": "F0"
},
"appServicePlanSku": {
"value": {
"name": "F1",
"tier": "Free",
"size": "F1",
"family": "F",
"capacity": 0
}
},
"botServiceSku": {
"value": "F0"
},
"contentModeratorSku": {
"value": "F0"
},
"luisServiceSku": {
"value": "F0"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment