From 85d4609ef395b398b782f5cf55be9b05b578fa17 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Thu, 14 Nov 2024 20:41:19 +0100 Subject: [PATCH] I don't get it... --- infrastructure/app.bicep | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/app.bicep b/infrastructure/app.bicep index 04a4bdd..fc92201 100644 --- a/infrastructure/app.bicep +++ b/infrastructure/app.bicep @@ -9,7 +9,7 @@ var appName = 'app' var version = 'latest' resource environment 'Microsoft.App/managedEnvironments@2024-03-01' = { - name: 'acr-${context.locationAbbreviation}-${context.environment}-${context.projectName}' + name: 'cea-${context.locationAbbreviation}-${context.environment}-${context.projectName}' location: context.location properties: { appLogsConfiguration: { @@ -19,7 +19,7 @@ resource environment 'Microsoft.App/managedEnvironments@2024-03-01' = { } resource app 'Microsoft.App/containerApps@2024-03-01' = { - name: 'acr-${context.locationAbbreviation}-${context.environment}-${context.projectName}-app' + name: 'ca-${context.locationAbbreviation}-${context.environment}-${context.projectName}-app' location: context.location identity: { type: 'SystemAssigned' @@ -55,7 +55,7 @@ resource app 'Microsoft.App/containerApps@2024-03-01' = { registries: [ { identity: 'system' - server: registry.properties.loginServer + server: '${registry.properties.loginServer}@2023-07-01' } ] }