From 4966d9127bea614f0b6a69c90e6ed7f8ae8ea7f9 Mon Sep 17 00:00:00 2001 From: Elisa Anzelmo Date: Thu, 27 Jan 2022 19:14:21 +0100 Subject: [PATCH 1/2] eventhub security --- arm/Microsoft.EventHub/namespaces/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.EventHub/namespaces/readme.md b/arm/Microsoft.EventHub/namespaces/readme.md index c4c3927f1f..1b5b9e89ce 100644 --- a/arm/Microsoft.EventHub/namespaces/readme.md +++ b/arm/Microsoft.EventHub/namespaces/readme.md @@ -40,7 +40,7 @@ This module deploys an event hub namespace. | `metricsToEnable` | array | `[AllMetrics]` | `[AllMetrics]` | Optional. The name of metrics that will be streamed. | | `name` | string | | | Optional. The name of the event hub namespace. If no name is provided, then unique name will be created. | | `networkAcls` | object | `{object}` | | Optional. Service endpoint object information | -| `privateEndpoints` | array | `[]` | | Optional. Configuration Details for private endpoints. | +| `privateEndpoints` | array | `[]` | | Optional. Configuration Details for private endpoints. For security reasons, it is recommended to use private endpoints whenever possible.| | `roleAssignments` | array | `[]` | | Optional. Array of role assignment objects that contain the 'roleDefinitionIdOrName' and 'principalId' to define RBAC role assignments on this resource. In the roleDefinitionIdOrName attribute, you can provide either the display name of the role definition, or its fully qualified ID in the following format: '/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11' | | `skuCapacity` | int | `1` | | Optional. Event Hub plan scale-out capacity of the resource | | `skuName` | string | `Standard` | `[Basic, Standard]` | Optional. event hub plan SKU name | From 6c5712fd21443d66f8c7d2ac0c3610bbe3c6a577 Mon Sep 17 00:00:00 2001 From: Elisa Anzelmo Date: Thu, 27 Jan 2022 19:14:36 +0100 Subject: [PATCH 2/2] event hub security --- arm/Microsoft.EventHub/namespaces/deploy.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm/Microsoft.EventHub/namespaces/deploy.bicep b/arm/Microsoft.EventHub/namespaces/deploy.bicep index 996a0afe2d..e46a037f4b 100644 --- a/arm/Microsoft.EventHub/namespaces/deploy.bicep +++ b/arm/Microsoft.EventHub/namespaces/deploy.bicep @@ -40,7 +40,7 @@ param authorizationRules array = [ } ] -@description('Optional. Configuration Details for private endpoints.') +@description('Optional. Configuration Details for private endpoints.For security reasons, it is recommended to use private endpoints whenever possible.') param privateEndpoints array = [] @description('Optional. Service endpoint object information')