From 51cda5c5c89478141f53e9436ea0e342f575d73e Mon Sep 17 00:00:00 2001 From: Bo Clifton <102168009+boclifton-MSFT@users.noreply.github.com> Date: Wed, 6 Jul 2022 11:17:54 -0500 Subject: [PATCH] Fixed typos "Resources" and "telemetry" updated with proper spelling --- .../bicep/orchestration/hubPeeredSpoke/hubPeeredSpoke.bicep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra-as-code/bicep/orchestration/hubPeeredSpoke/hubPeeredSpoke.bicep b/infra-as-code/bicep/orchestration/hubPeeredSpoke/hubPeeredSpoke.bicep index a49b7b8f7..c05b2ca5a 100644 --- a/infra-as-code/bicep/orchestration/hubPeeredSpoke/hubPeeredSpoke.bicep +++ b/infra-as-code/bicep/orchestration/hubPeeredSpoke/hubPeeredSpoke.bicep @@ -2,7 +2,7 @@ targetScope = 'managementGroup' // **Parameters** // Generic Parameters - Used in multiple modules -@description('The region to deploy all resoruces into. DEFAULTS TO deployment().location') +@description('The region to deploy all resources into. DEFAULTS TO deployment().location') param parLocation string = deployment().location @description('Prefix for the management group hierarchy. DEFAULTS TO = alz') @@ -95,7 +95,7 @@ var varVirtualHubResourceGroup = (!empty(parHubVirtualNetworkId) && contains(par var varVirtualHubSubscriptionId = (!empty(parHubVirtualNetworkId) && contains(parHubVirtualNetworkId, '/providers/Microsoft.Network/virtualHubs/') ? split(parHubVirtualNetworkId, '/')[2] : '' ) // **Modules** -// Module - Customer Usage Attribution - Telemtry +// Module - Customer Usage Attribution - Telemetry module modCustomerUsageAttribution '../../CRML/customerUsageAttribution/cuaIdManagementGroup.bicep' = if (!parTelemetryOptOut) { scope: managementGroup(parTopLevelManagementGroupPrefix) name: 'pid-${varCuaid}-${uniqueString(parLocation, parPeeredVnetSubscriptionId)}'