From ee02dc06d12079fd16e5f448cdc4a8143d3b4d42 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Thu, 14 Nov 2024 19:29:02 +0100 Subject: [PATCH] fix resource name --- infrastructure/registry.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/registry.bicep b/infrastructure/registry.bicep index f086cc7..689da4f 100644 --- a/infrastructure/registry.bicep +++ b/infrastructure/registry.bicep @@ -5,7 +5,7 @@ targetScope = 'resourceGroup' param context Context resource registry 'Microsoft.ContainerRegistry/registries@2023-07-01' = { - name: 'acr-${context.locationAbbreviation}-${context.environment}-${context.projectName}' + name: 'acr${context.locationAbbreviation}${context.environment}${context.projectName}' location: context.location sku: { name: 'Basic'