Skip to content

Commit

Permalink
fix the bicep file naming (#123)
Browse files Browse the repository at this point in the history
## Purpose
naming

## Does this introduce a breaking change?
<!-- Mark one with an "x". -->
```
[ ] Yes
[x] No
```

## Pull Request Type
What kind of change does this Pull Request introduce?

<!-- Please check the one that applies to this PR using "x". -->
```
[ ] Bugfix
[ ] Feature
[x] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:
```
  • Loading branch information
sonwan2020 authored Nov 1, 2024
1 parent ee429f2 commit 78a74bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/bicep/modules/app/petclinic.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ module customersService '../containerapps/containerapp.bicep' = {
}
}

module customersServiceConnection '../containerapps/serviceLiner.bicep' = {
module customersServiceConnection '../containerapps/serviceLinker.bicep' = {
name: 'customers-service-sql-connection'
params: {
appName: customersService.outputs.appName
Expand Down Expand Up @@ -133,7 +133,7 @@ module vetsService '../containerapps/containerapp.bicep' = {
}
}

module vetsServiceConnection '../containerapps/serviceLiner.bicep' = {
module vetsServiceConnection '../containerapps/serviceLinker.bicep' = {
name: 'vets-service-sql-connection'
params: {
appName: vetsService.outputs.appName
Expand Down Expand Up @@ -167,7 +167,7 @@ module visitsService '../containerapps/containerapp.bicep' = {
}
}

module visitsServiceConnection '../containerapps/serviceLiner.bicep' = {
module visitsServiceConnection '../containerapps/serviceLinker.bicep' = {
name: 'visits-service-sql-connection'
params: {
appName: visitsService.outputs.appName
Expand Down

0 comments on commit 78a74bc

Please sign in to comment.