Skip to content

Commit

Permalink
Test case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
leegrash committed Sep 24, 2024
1 parent 763fc0d commit 7fd73f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-bicep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions DemoEnvironment.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
Expand All @@ -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}'
Expand Down

0 comments on commit 7fd73f8

Please sign in to comment.