diff --git a/.github/workflows/deploy-bicep.yaml b/.github/workflows/deploy-bicep.yaml index b1a7553..e930a0a 100644 --- a/.github/workflows/deploy-bicep.yaml +++ b/.github/workflows/deploy-bicep.yaml @@ -18,7 +18,7 @@ jobs: - name: Verify Modules Checkout run: | ls -al - ls -al ./Modules + ls -al ./modules - name: Log in to Azure uses: azure/login@v1 diff --git a/DemoEnvironment.bicep b/DemoEnvironment.bicep index d5752a7..5c0b32a 100644 --- a/DemoEnvironment.bicep +++ b/DemoEnvironment.bicep @@ -16,7 +16,7 @@ resource appServicePlans 'Microsoft.Web/serverfarms@2021-02-01' = [for location } }] -module DemoWebAppModule './Modules/AppService.bicep' = [for location in locations: { +module DemoWebAppModule './modules/AppService.bicep' = [for location in locations: { name: '${deployment().name}-AppService-${location}' params: { appServicePlanName: '${appServicePlanName}-${location}' @@ -28,7 +28,7 @@ module DemoWebAppModule './Modules/AppService.bicep' = [for location in location ] }] -module DemoTestWebAppModule './Modules/AppService.bicep' = [for location in locations: { +module DemoTestWebAppModule './modules/AppService.bicep' = [for location in locations: { name: '${deployment().name}-AppServiceTest-${location}' params: { appServicePlanName: '${appServicePlanName}-${location}'