Skip to content

Commit

Permalink
Indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahelland committed Feb 1, 2024
1 parent 25eaf44 commit acb7c25
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions infra/modules/containers/container-app-service/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ param containerAppEnvironmentId string

resource containerService 'Microsoft.App/containerApps@2023-04-01-preview' = {
name: serviceName
location: location
tags: resourceTags
properties: {
environmentId: containerAppEnvironmentId
configuration: {
service: {
type: serviceType
}
location: location
tags: resourceTags
properties: {
environmentId: containerAppEnvironmentId
configuration: {
service: {
type: serviceType
}
}
}
}

@description('The id of the service.')
output id string = containerService.id

0 comments on commit acb7c25

Please sign in to comment.