{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": { "_generator": { "name": "bicep", "version": "0.25.53.49325", "templateHash": "3600259857722261042" } }, "parameters": { "name": { "type": "string", "metadata": { "description": "The name of the resource." } }, "location": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "The location resources will be deployed." } } }, "resources": [ { "type": "Microsoft.Cache/redisEnterprise", "apiVersion": "2023-11-01", "name": "[parameters('name')]", "location": "[parameters('location')]", "sku": { "name": "Enterprise_E10" }, "properties": { "minimumTlsVersion": "1.2" } } ] }