Skip to content

Instantly share code, notes, and snippets.

@cdennig
Last active August 18, 2017 09:21
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 cdennig/16fecc2a7f377b0e3d0cd0e199008a7c to your computer and use it in GitHub Desktop.
Save cdennig/16fecc2a7f377b0e3d0cd0e199008a7c to your computer and use it in GitHub Desktop.
Azure Redis Cache plus Azure Search
{
"type": "Microsoft.Cache/Redis",
"name": "[variables('RedisCache').Name]",
"apiVersion": "2016-04-01",
"location": "[resourceGroup().location]",
"tags": {
"displayName": "Redis Cache"
},
"properties": {
"redisVersion": "3.0",
"sku": {
"name": "[variables('RedisCache').SKUName]",
"family": "[variables('RedisCache').SKUFamily]",
"capacity": "[variables('RedisCache').SKUCapacity]"
},
"enableNonSslPort": false,
"redisConfiguration": {
"maxclients": "256"
}
},
"resources": [],
"dependsOn": []
},
{
"apiVersion": "2015-08-19",
"name": "[variables('searchAppName')]",
"type": "Microsoft.Search/searchServices",
"location": "[resourceGroup().location]",
"properties": {
"replicaCount": "1",
"partitionCount": "1",
"hostingMode": "default"
},
"sku": {
"name": "basic"
},
"tags": {
"displayName": "Search Service"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment