From acb7c25f9606bde976c3feab8623a17296939d0e Mon Sep 17 00:00:00 2001 From: ahelland Date: Thu, 1 Feb 2024 21:31:19 +0100 Subject: [PATCH] Indentation fix --- .../containers/container-app-service/main.bicep | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/infra/modules/containers/container-app-service/main.bicep b/infra/modules/containers/container-app-service/main.bicep index 4ef93b3..4bc297d 100644 --- a/infra/modules/containers/container-app-service/main.bicep +++ b/infra/modules/containers/container-app-service/main.bicep @@ -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