File tree Expand file tree Collapse file tree 7 files changed +4
-94
lines changed
Expand file tree Collapse file tree 7 files changed +4
-94
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ services:
77 api :
88 language : csharp
99 project : ./src/server/FakeSurveyGenerator.Api
10- module : ./src/server/infra
1110 host : containerapp
1211 docker :
1312 path : ./Dockerfile
@@ -17,7 +16,6 @@ services:
1716 ui :
1817 language : ts
1918 project : ./src/client/frontend
20- module : ./src/client/infra
2119 host : containerapp
2220 dist : dist
2321 docker :
File renamed without changes.
Original file line number Diff line number Diff line change 1- using './main .bicep'
1+ using './api .bicep'
22
33param containerAppName = readEnvironmentVariable ('SERVICE_API_NAME' , '' )
44param containerAppEnvironmentId = readEnvironmentVariable ('AZURE_CONTAINER_APPS_ENVIRONMENT_ID' , '' )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ resource managedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2025-
99 name : managedIdentityName
1010}
1111
12- module containerAppEnvironment 'modules/ containerAppEnvironment.bicep' = {
12+ module containerAppEnvironment 'containerAppEnvironment.bicep' = {
1313 name : 'containerAppEnvironment'
1414 params : {
1515 location : location
@@ -20,7 +20,7 @@ module containerAppEnvironment 'modules/containerAppEnvironment.bicep' = {
2020 }
2121}
2222
23- module daprSecretStoreComponent 'modules/ daprComponent.bicep' = {
23+ module daprSecretStoreComponent 'daprComponent.bicep' = {
2424 name : 'daprSecretStoreComponent'
2525 params : {
2626 componentName : 'secrets'
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 1- using './main .bicep'
1+ using './ui .bicep'
22
33param containerAppName = readEnvironmentVariable ('SERVICE_UI_NAME' , '' )
44param containerAppEnvironmentId = readEnvironmentVariable ('AZURE_CONTAINER_APPS_ENVIRONMENT_ID' , '' )
You can’t perform that action at this time.
0 commit comments