From adf280252ff7344687dd505d0e86367b5d422e36 Mon Sep 17 00:00:00 2001 From: Jake Ginnivan Date: Tue, 20 Aug 2024 10:38:27 +0800 Subject: [PATCH] Fix syntax error --- infra/app/ddd.bicep | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/infra/app/ddd.bicep b/infra/app/ddd.bicep index 659670e..6275623 100644 --- a/infra/app/ddd.bicep +++ b/infra/app/ddd.bicep @@ -73,8 +73,10 @@ resource app 'Microsoft.App/containerApps@2024-03-01' = { } ] secrets: [ - name: 'github-token' - value: gitHubToken + { + name: 'github-token' + value: gitHubToken + } ] } secrets @@ -87,7 +89,7 @@ resource app 'Microsoft.App/containerApps@2024-03-01' = { { name: 'APPLICATIONINSIGHTS_CONNECTION_STRING' value: applicationInsights.properties.ConnectionString - } + }, { name: 'PORT' value: '80'