Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Aug 20, 2024
1 parent f523a39 commit adf2802
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions infra/app/ddd.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ resource app 'Microsoft.App/containerApps@2024-03-01' = {
}
]
secrets: [
name: 'github-token'
value: gitHubToken
{
name: 'github-token'
value: gitHubToken
}
]
}
secrets
Expand All @@ -87,7 +89,7 @@ resource app 'Microsoft.App/containerApps@2024-03-01' = {
{
name: 'APPLICATIONINSIGHTS_CONNECTION_STRING'
value: applicationInsights.properties.ConnectionString
}
},
{
name: 'PORT'
value: '80'
Expand Down

0 comments on commit adf2802

Please sign in to comment.