diff --git a/avm/res/web/connection/README.md b/avm/res/web/connection/README.md index e98d0eedbd..3215e264f7 100644 --- a/avm/res/web/connection/README.md +++ b/avm/res/web/connection/README.md @@ -47,7 +47,7 @@ This instance deploys the module with the minimum set of required parameters. ```bicep module connection 'br/public:avm/res/web/connection:' = { - name: '${uniqueString(deployment().name, resourceLocation)}-test-wcmin' + name: 'connectionDeployment' params: { // Required parameters displayName: 'azuremonitorlogs' @@ -107,7 +107,7 @@ This instance deploys the module with most of its features enabled. ```bicep module connection 'br/public:avm/res/web/connection:' = { - name: '${uniqueString(deployment().name, resourceLocation)}-test-wcmax' + name: 'connectionDeployment' params: { // Required parameters displayName: 'azuremonitorlogs' @@ -225,7 +225,7 @@ This instance deploys the module in alignment with the best-practices of the Azu ```bicep module connection 'br/public:avm/res/web/connection:' = { - name: '${uniqueString(deployment().name, resourceLocation)}-test-wcwaf' + name: 'connectionDeployment' params: { // Required parameters displayName: 'azuremonitorlogs' @@ -294,14 +294,14 @@ module connection 'br/public:avm/res/web/connection:' = { | Parameter | Type | Description | | :-- | :-- | :-- | | [`displayName`](#parameter-displayname) | string | Display name connection. Example: 'blobconnection' when using blobs. It can change depending on the resource. | -| [`name`](#parameter-name) | string | Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource. | +| [`name`](#parameter-name) | string | Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource. | **Optional parameters** | Parameter | Type | Description | | :-- | :-- | :-- | | [`api`](#parameter-api) | object | Specific values for some API connections. | -| [`customParameterValues`](#parameter-customparametervalues) | object | Customized parameter values for specific connections. | +| [`customParameterValues`](#parameter-customparametervalues) | object | Dictionary of custom parameter values for specific connections. | | [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. | | [`location`](#parameter-location) | string | Location of the deployment. | | [`lock`](#parameter-lock) | object | The lock settings of the service. | @@ -321,7 +321,7 @@ Display name connection. Example: 'blobconnection' when using blobs. It can chan ### Parameter: `name` -Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource. +Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource. - Required: Yes - Type: string @@ -335,7 +335,7 @@ Specific values for some API connections. ### Parameter: `customParameterValues` -Customized parameter values for specific connections. +Dictionary of custom parameter values for specific connections. - Required: No - Type: object diff --git a/avm/res/web/connection/main.bicep b/avm/res/web/connection/main.bicep index 31e5a59982..4a9150f8cd 100644 --- a/avm/res/web/connection/main.bicep +++ b/avm/res/web/connection/main.bicep @@ -5,13 +5,13 @@ metadata owner = 'Azure/module-maintainers' @description('Optional. Specific values for some API connections.') param api object? -@description('Required. Connection name for connection. Example: \'azureblob\' when using blobs. It can change depending on the resource.') +@description('Required. Connection name for connection. Example: \'azureblob\' when using blobs. It can change depending on the resource.') param name string @description('Optional. Enable/Disable usage telemetry for module.') param enableTelemetry bool = true -@description('Optional. Customized parameter values for specific connections.') +@description('Optional. Dictionary of custom parameter values for specific connections.') param customParameterValues object? @description('Required. Display name connection. Example: \'blobconnection\' when using blobs. It can change depending on the resource.') diff --git a/avm/res/web/connection/main.json b/avm/res/web/connection/main.json index 42a8a1e6a1..b8ead16876 100644 --- a/avm/res/web/connection/main.json +++ b/avm/res/web/connection/main.json @@ -6,7 +6,7 @@ "_generator": { "name": "bicep", "version": "0.26.54.24096", - "templateHash": "7023218884574427074" + "templateHash": "153462740137838298" }, "name": "API Connections", "description": "This module deploys an Azure API Connection.", @@ -116,7 +116,7 @@ "name": { "type": "string", "metadata": { - "description": "Required. Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource." + "description": "Required. Connection name for connection. Example: 'azureblob' when using blobs. It can change depending on the resource." } }, "enableTelemetry": { @@ -130,7 +130,7 @@ "type": "object", "nullable": true, "metadata": { - "description": "Optional. Customized parameter values for specific connections." + "description": "Optional. Dictionary of custom parameter values for specific connections." } }, "displayName": {