From 13fdd979d201c652a77620bab2b8fa8b72daf484 Mon Sep 17 00:00:00 2001 From: Kris Baranek <20225789+krbar@users.noreply.github.com> Date: Thu, 21 May 2026 14:30:25 +0200 Subject: [PATCH] feat: publish child modules of `avm/res/cache/redis-enterprise` --- avm/res/cache/redis-enterprise/CHANGELOG.md | 11 +++ .../redis-enterprise/database/CHANGELOG.md | 13 ++++ .../cache/redis-enterprise/database/README.md | 22 ++++++ .../access-policy-assignment/CHANGELOG.md | 13 ++++ .../access-policy-assignment/README.md | 22 ++++++ .../access-policy-assignment/main.bicep | 22 ++++++ .../access-policy-assignment/main.json | 31 +++++++- .../access-policy-assignment/version.json | 4 + .../redis-enterprise/database/main.bicep | 33 ++++++-- .../cache/redis-enterprise/database/main.json | 68 ++++++++++++++++- .../redis-enterprise/database/version.json | 4 + avm/res/cache/redis-enterprise/main.bicep | 1 + avm/res/cache/redis-enterprise/main.json | 75 +++++++++++++++++-- 13 files changed, 301 insertions(+), 18 deletions(-) create mode 100644 avm/res/cache/redis-enterprise/database/CHANGELOG.md create mode 100644 avm/res/cache/redis-enterprise/database/access-policy-assignment/CHANGELOG.md create mode 100644 avm/res/cache/redis-enterprise/database/access-policy-assignment/version.json create mode 100644 avm/res/cache/redis-enterprise/database/version.json diff --git a/avm/res/cache/redis-enterprise/CHANGELOG.md b/avm/res/cache/redis-enterprise/CHANGELOG.md index 7f8255a5f51..e9d82f8848d 100644 --- a/avm/res/cache/redis-enterprise/CHANGELOG.md +++ b/avm/res/cache/redis-enterprise/CHANGELOG.md @@ -2,6 +2,17 @@ The latest version of the changelog can be found [here](https://github.com/Azure/bicep-registry-modules/blob/main/avm/res/cache/redis-enterprise/CHANGELOG.md). +## 0.5.2 + +### Changes + +- Publishing child module `avm/res/cache/redis-enterprise/database` +- Publishing child module `avm/res/cache/redis-enterprise/database/access-policy-assignment` + +### Breaking Changes + +- None + ## 0.5.1 ### Changes diff --git a/avm/res/cache/redis-enterprise/database/CHANGELOG.md b/avm/res/cache/redis-enterprise/database/CHANGELOG.md new file mode 100644 index 00000000000..0165ade497e --- /dev/null +++ b/avm/res/cache/redis-enterprise/database/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +The latest version of the changelog can be found [here](https://github.com/Azure/bicep-registry-modules/blob/main/avm/res/cache/redis-enterprise/database/CHANGELOG.md). + +## 0.1.0 + +### Changes + +- Initial version + +### Breaking Changes + +- None diff --git a/avm/res/cache/redis-enterprise/database/README.md b/avm/res/cache/redis-enterprise/database/README.md index ecf61c15304..06d55837f20 100644 --- a/avm/res/cache/redis-enterprise/database/README.md +++ b/avm/res/cache/redis-enterprise/database/README.md @@ -2,12 +2,21 @@ This module deploys a Redis database in a Redis Enterprise or Azure Managed Redis cluster. +You can reference the module as follows: +```bicep +module redisEnterprise 'br/public:avm/res/cache/redis-enterprise/database:' = { + params: { (...) } +} +``` +For examples, please refer to the [Usage Examples](#usage-examples) section. + ## Navigation - [Resource Types](#Resource-Types) - [Parameters](#Parameters) - [Outputs](#Outputs) - [Cross-referenced modules](#Cross-referenced-modules) +- [Data Collection](#Data-Collection) ## Resource Types @@ -35,6 +44,7 @@ This module deploys a Redis database in a Redis Enterprise or Azure Managed Redi | [`clusteringPolicy`](#parameter-clusteringpolicy) | string | Redis clustering policy. [Learn more](https://learn.microsoft.com/azure/redis/architecture#cluster-policies). | | [`deferUpgrade`](#parameter-deferupgrade) | string | Specifies whether to defer future Redis major version upgrades by up to 90 days. [Learn more](https://aka.ms/redisversionupgrade#defer-upgrades). | | [`diagnosticSettings`](#parameter-diagnosticsettings) | array | The database-level diagnostic settings of the service. | +| [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. | | [`evictionPolicy`](#parameter-evictionpolicy) | string | Specifies the eviction policy for the Redis resource. | | [`geoReplication`](#parameter-georeplication) | object | The active geo-replication settings of the service. All caches within a geo-replication group must have the same configuration. | | [`modules`](#parameter-modules) | array | Redis modules to enable. Restrictions may apply based on SKU and configuration. [Learn more](https://aka.ms/redis/enterprise/modules). | @@ -269,6 +279,14 @@ Resource ID of the diagnostic log analytics workspace. For security reasons, it - Required: No - Type: string +### Parameter: `enableTelemetry` + +Enable/Disable usage telemetry for module. + +- Required: No +- Type: bool +- Default: `True` + ### Parameter: `evictionPolicy` Specifies the eviction policy for the Redis resource. @@ -546,3 +564,7 @@ This section gives you an overview of all local-referenced module files (i.e., o | Reference | Type | | :-- | :-- | | `br/public:avm/utl/types/avm-common-types:0.6.1` | Remote reference | + +## Data Collection + +The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the [repository](https://aka.ms/avm/telemetry). There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at . You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. diff --git a/avm/res/cache/redis-enterprise/database/access-policy-assignment/CHANGELOG.md b/avm/res/cache/redis-enterprise/database/access-policy-assignment/CHANGELOG.md new file mode 100644 index 00000000000..bfdf530a260 --- /dev/null +++ b/avm/res/cache/redis-enterprise/database/access-policy-assignment/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +The latest version of the changelog can be found [here](https://github.com/Azure/bicep-registry-modules/blob/main/avm/res/cache/redis-enterprise/database/access-policy-assignment/CHANGELOG.md). + +## 0.1.0 + +### Changes + +- Initial version + +### Breaking Changes + +- None diff --git a/avm/res/cache/redis-enterprise/database/access-policy-assignment/README.md b/avm/res/cache/redis-enterprise/database/access-policy-assignment/README.md index 783d4ac00c4..63c7321c37b 100644 --- a/avm/res/cache/redis-enterprise/database/access-policy-assignment/README.md +++ b/avm/res/cache/redis-enterprise/database/access-policy-assignment/README.md @@ -2,11 +2,20 @@ This module deploys an access policy assignment for an Azure Managed Redis database. +You can reference the module as follows: +```bicep +module redisEnterprise 'br/public:avm/res/cache/redis-enterprise/database/access-policy-assignment:' = { + params: { (...) } +} +``` +For examples, please refer to the [Usage Examples](#usage-examples) section. + ## Navigation - [Resource Types](#Resource-Types) - [Parameters](#Parameters) - [Outputs](#Outputs) +- [Data Collection](#Data-Collection) ## Resource Types @@ -34,6 +43,7 @@ This module deploys an access policy assignment for an Azure Managed Redis datab | Parameter | Type | Description | | :-- | :-- | :-- | | [`accessPolicyName`](#parameter-accesspolicyname) | string | Name of the access policy to be assigned. | +| [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. | | [`name`](#parameter-name) | string | Name of the access policy assignment. | ### Parameter: `userObjectId` @@ -71,6 +81,14 @@ Name of the access policy to be assigned. ] ``` +### Parameter: `enableTelemetry` + +Enable/Disable usage telemetry for module. + +- Required: No +- Type: bool +- Default: `True` + ### Parameter: `name` Name of the access policy assignment. @@ -86,3 +104,7 @@ Name of the access policy assignment. | `resourceGroupName` | string | The resource group the access policy assignment was deployed into. | | `resourceId` | string | The resource ID of the access policy assignment. | | `userObjectId` | string | The object ID of the user associated with the access policy. | + +## Data Collection + +The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the [repository](https://aka.ms/avm/telemetry). There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft's privacy statement. Our privacy statement is located at . You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices. diff --git a/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.bicep b/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.bicep index f2a3f2d5647..f23988f2159 100644 --- a/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.bicep +++ b/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.bicep @@ -19,6 +19,28 @@ param databaseName string @description('Optional. Name of the access policy to be assigned.') param accessPolicyName string = 'default' +@description('Optional. Enable/Disable usage telemetry for module.') +param enableTelemetry bool = true + +#disable-next-line no-deployments-resources +resource avmTelemetry 'Microsoft.Resources/deployments@2025-04-01' = if (enableTelemetry) { + name: '46d3xbcp.res.cache-redisenterprise-databaseaccess.${replace('-..--..-', '.', '-')}.${substring(uniqueString(deployment().name), 0, 4)}' + properties: { + mode: 'Incremental' + template: { + '$schema': 'https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#' + contentVersion: '1.0.0.0' + resources: [] + outputs: { + telemetry: { + type: 'String' + value: 'For more information, see https://aka.ms/avm/TelemetryInfo' + } + } + } + } +} + resource redisCluster 'Microsoft.Cache/redisEnterprise@2025-07-01' existing = { name: clusterName diff --git a/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.json b/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.json index e4dd579fb06..c6183d5244a 100644 --- a/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.json +++ b/avm/res/cache/redis-enterprise/database/access-policy-assignment/main.json @@ -5,8 +5,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "15201669394209392511" + "version": "0.43.8.12551", + "templateHash": "3069501489473055095" }, "name": "Azure Managed Redis Database Access Policy Assignment", "description": "This module deploys an access policy assignment for an Azure Managed Redis database." @@ -46,6 +46,13 @@ "metadata": { "description": "Optional. Name of the access policy to be assigned." } + }, + "enableTelemetry": { + "type": "bool", + "defaultValue": true, + "metadata": { + "description": "Optional. Enable/Disable usage telemetry for module." + } } }, "resources": { @@ -55,6 +62,26 @@ "apiVersion": "2025-07-01", "name": "[format('{0}/{1}', parameters('clusterName'), parameters('databaseName'))]" }, + "avmTelemetry": { + "condition": "[parameters('enableTelemetry')]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2025-04-01", + "name": "[format('46d3xbcp.res.cache-redisenterprise-databaseaccess.{0}.{1}', replace('-..--..-', '.', '-'), substring(uniqueString(deployment().name), 0, 4))]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [], + "outputs": { + "telemetry": { + "type": "String", + "value": "For more information, see https://aka.ms/avm/TelemetryInfo" + } + } + } + } + }, "redisCluster": { "existing": true, "type": "Microsoft.Cache/redisEnterprise", diff --git a/avm/res/cache/redis-enterprise/database/access-policy-assignment/version.json b/avm/res/cache/redis-enterprise/database/access-policy-assignment/version.json new file mode 100644 index 00000000000..e82cdf4e569 --- /dev/null +++ b/avm/res/cache/redis-enterprise/database/access-policy-assignment/version.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://aka.ms/bicep-registry-module-version-file-schema#", + "version": "0.1" +} \ No newline at end of file diff --git a/avm/res/cache/redis-enterprise/database/main.bicep b/avm/res/cache/redis-enterprise/database/main.bicep index a3c0ae8ee1b..0ffd941c8d6 100644 --- a/avm/res/cache/redis-enterprise/database/main.bicep +++ b/avm/res/cache/redis-enterprise/database/main.bicep @@ -75,10 +75,34 @@ import { diagnosticSettingLogsOnlyType } from 'br/public:avm/utl/types/avm-commo @description('Optional. The database-level diagnostic settings of the service.') param diagnosticSettings diagnosticSettingLogsOnlyType[]? +@description('Optional. Enable/Disable usage telemetry for module.') +param enableTelemetry bool = true + // ============== // // Resources // // ============== // +var enableReferencedModulesTelemetry = false + +#disable-next-line no-deployments-resources +resource avmTelemetry 'Microsoft.Resources/deployments@2025-04-01' = if (enableTelemetry) { + name: '46d3xbcp.res.cache-redisenterprise-database.${replace('-..--..-', '.', '-')}.${substring(uniqueString(deployment().name), 0, 4)}' + properties: { + mode: 'Incremental' + template: { + '$schema': 'https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#' + contentVersion: '1.0.0.0' + resources: [] + outputs: { + telemetry: { + type: 'String' + value: 'For more information, see https://aka.ms/avm/TelemetryInfo' + } + } + } + } +} + resource redisCluster 'Microsoft.Cache/redisEnterprise@2025-07-01' existing = { name: redisClusterName } @@ -121,6 +145,7 @@ module database_accessPolicyAssignments 'access-policy-assignment/main.bicep' = databaseName: redisDatabase.name accessPolicyName: assignment.?accessPolicyName userObjectId: assignment.userObjectId + enableTelemetry: enableReferencedModulesTelemetry } } ] @@ -171,9 +196,7 @@ output endpoint string = '${redisCluster.properties.hostName}:${redisDatabase.pr @secure() @description('The primary access key.') -output primaryAccessKey string? = accessKeysAuthentication == 'Enabled' - ? redisDatabase.listKeys().primaryKey - : null +output primaryAccessKey string? = accessKeysAuthentication == 'Enabled' ? redisDatabase.listKeys().primaryKey : null @secure() @description('The primary connection string.') @@ -189,9 +212,7 @@ output primaryStackExchangeRedisConnectionString string? = accessKeysAuthenticat @secure() @description('The secondary access key.') -output secondaryAccessKey string? = accessKeysAuthentication == 'Enabled' - ? redisDatabase.listKeys().secondaryKey - : null +output secondaryAccessKey string? = accessKeysAuthentication == 'Enabled' ? redisDatabase.listKeys().secondaryKey : null @secure() @description('The secondary connection string.') diff --git a/avm/res/cache/redis-enterprise/database/main.json b/avm/res/cache/redis-enterprise/database/main.json index b09b35b88fd..4ebf912fe5e 100644 --- a/avm/res/cache/redis-enterprise/database/main.json +++ b/avm/res/cache/redis-enterprise/database/main.json @@ -5,8 +5,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "9492572042805684235" + "version": "0.43.8.12551", + "templateHash": "5500307406719029671" }, "name": "Redis database", "description": "This module deploys a Redis database in a Redis Enterprise or Azure Managed Redis cluster." @@ -429,9 +429,39 @@ "metadata": { "description": "Optional. The database-level diagnostic settings of the service." } + }, + "enableTelemetry": { + "type": "bool", + "defaultValue": true, + "metadata": { + "description": "Optional. Enable/Disable usage telemetry for module." + } } }, + "variables": { + "enableReferencedModulesTelemetry": false + }, "resources": { + "avmTelemetry": { + "condition": "[parameters('enableTelemetry')]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2025-04-01", + "name": "[format('46d3xbcp.res.cache-redisenterprise-database.{0}.{1}', replace('-..--..-', '.', '-'), substring(uniqueString(deployment().name), 0, 4))]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [], + "outputs": { + "telemetry": { + "type": "String", + "value": "For more information, see https://aka.ms/avm/TelemetryInfo" + } + } + } + } + }, "redisCluster": { "existing": true, "type": "Microsoft.Cache/redisEnterprise", @@ -517,6 +547,9 @@ }, "userObjectId": { "value": "[coalesce(parameters('accessPolicyAssignments'), createArray())[copyIndex()].userObjectId]" + }, + "enableTelemetry": { + "value": "[variables('enableReferencedModulesTelemetry')]" } }, "template": { @@ -526,8 +559,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "15201669394209392511" + "version": "0.43.8.12551", + "templateHash": "3069501489473055095" }, "name": "Azure Managed Redis Database Access Policy Assignment", "description": "This module deploys an access policy assignment for an Azure Managed Redis database." @@ -567,6 +600,13 @@ "metadata": { "description": "Optional. Name of the access policy to be assigned." } + }, + "enableTelemetry": { + "type": "bool", + "defaultValue": true, + "metadata": { + "description": "Optional. Enable/Disable usage telemetry for module." + } } }, "resources": { @@ -576,6 +616,26 @@ "apiVersion": "2025-07-01", "name": "[format('{0}/{1}', parameters('clusterName'), parameters('databaseName'))]" }, + "avmTelemetry": { + "condition": "[parameters('enableTelemetry')]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2025-04-01", + "name": "[format('46d3xbcp.res.cache-redisenterprise-databaseaccess.{0}.{1}', replace('-..--..-', '.', '-'), substring(uniqueString(deployment().name), 0, 4))]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [], + "outputs": { + "telemetry": { + "type": "String", + "value": "For more information, see https://aka.ms/avm/TelemetryInfo" + } + } + } + } + }, "redisCluster": { "existing": true, "type": "Microsoft.Cache/redisEnterprise", diff --git a/avm/res/cache/redis-enterprise/database/version.json b/avm/res/cache/redis-enterprise/database/version.json new file mode 100644 index 00000000000..e82cdf4e569 --- /dev/null +++ b/avm/res/cache/redis-enterprise/database/version.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://aka.ms/bicep-registry-module-version-file-schema#", + "version": "0.1" +} \ No newline at end of file diff --git a/avm/res/cache/redis-enterprise/main.bicep b/avm/res/cache/redis-enterprise/main.bicep index caa8620caeb..4c9558f7c04 100644 --- a/avm/res/cache/redis-enterprise/main.bicep +++ b/avm/res/cache/redis-enterprise/main.bicep @@ -291,6 +291,7 @@ module redisCluster_database 'database/main.bicep' = { port: database.?port persistence: database.?persistence diagnosticSettings: database.?diagnosticSettings + enableTelemetry: enableReferencedModulesTelemetry } } diff --git a/avm/res/cache/redis-enterprise/main.json b/avm/res/cache/redis-enterprise/main.json index bf345156d48..901d58938e5 100644 --- a/avm/res/cache/redis-enterprise/main.json +++ b/avm/res/cache/redis-enterprise/main.json @@ -5,8 +5,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "10454120960154732683" + "version": "0.43.8.12551", + "templateHash": "5502796027993389160" }, "name": "Redis Enterprise and Azure Managed Redis", "description": "This module deploys a Redis Enterprise or Azure Managed Redis cache." @@ -1447,6 +1447,9 @@ }, "diagnosticSettings": { "value": "[tryGet(parameters('database'), 'diagnosticSettings')]" + }, + "enableTelemetry": { + "value": "[variables('enableReferencedModulesTelemetry')]" } }, "template": { @@ -1456,8 +1459,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "9492572042805684235" + "version": "0.43.8.12551", + "templateHash": "5500307406719029671" }, "name": "Redis database", "description": "This module deploys a Redis database in a Redis Enterprise or Azure Managed Redis cluster." @@ -1880,9 +1883,39 @@ "metadata": { "description": "Optional. The database-level diagnostic settings of the service." } + }, + "enableTelemetry": { + "type": "bool", + "defaultValue": true, + "metadata": { + "description": "Optional. Enable/Disable usage telemetry for module." + } } }, + "variables": { + "enableReferencedModulesTelemetry": false + }, "resources": { + "avmTelemetry": { + "condition": "[parameters('enableTelemetry')]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2025-04-01", + "name": "[format('46d3xbcp.res.cache-redisenterprise-database.{0}.{1}', replace('-..--..-', '.', '-'), substring(uniqueString(deployment().name), 0, 4))]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [], + "outputs": { + "telemetry": { + "type": "String", + "value": "For more information, see https://aka.ms/avm/TelemetryInfo" + } + } + } + } + }, "redisCluster": { "existing": true, "type": "Microsoft.Cache/redisEnterprise", @@ -1968,6 +2001,9 @@ }, "userObjectId": { "value": "[coalesce(parameters('accessPolicyAssignments'), createArray())[copyIndex()].userObjectId]" + }, + "enableTelemetry": { + "value": "[variables('enableReferencedModulesTelemetry')]" } }, "template": { @@ -1977,8 +2013,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.41.2.15936", - "templateHash": "15201669394209392511" + "version": "0.43.8.12551", + "templateHash": "3069501489473055095" }, "name": "Azure Managed Redis Database Access Policy Assignment", "description": "This module deploys an access policy assignment for an Azure Managed Redis database." @@ -2018,6 +2054,13 @@ "metadata": { "description": "Optional. Name of the access policy to be assigned." } + }, + "enableTelemetry": { + "type": "bool", + "defaultValue": true, + "metadata": { + "description": "Optional. Enable/Disable usage telemetry for module." + } } }, "resources": { @@ -2027,6 +2070,26 @@ "apiVersion": "2025-07-01", "name": "[format('{0}/{1}', parameters('clusterName'), parameters('databaseName'))]" }, + "avmTelemetry": { + "condition": "[parameters('enableTelemetry')]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2025-04-01", + "name": "[format('46d3xbcp.res.cache-redisenterprise-databaseaccess.{0}.{1}', replace('-..--..-', '.', '-'), substring(uniqueString(deployment().name), 0, 4))]", + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [], + "outputs": { + "telemetry": { + "type": "String", + "value": "For more information, see https://aka.ms/avm/TelemetryInfo" + } + } + } + } + }, "redisCluster": { "existing": true, "type": "Microsoft.Cache/redisEnterprise",