@@ -13,6 +13,7 @@ param backOfficeVersion string
1313param applicationInsightsConnectionString string
1414param communicationServicesDataLocation string = 'europe'
1515param mailSenderDisplayName string = 'PlatformPlatform'
16+ param revisionSuffix string
1617
1718var storageAccountUniquePrefix = replace (clusterResourceGroupName , '-' , '' )
1819var tags = { environment : environment , 'managed-by' : 'bicep' }
@@ -244,6 +245,7 @@ module accountManagementWorkers '../modules/container-app.bicep' = {
244245 userAssignedIdentityName : accountManagementIdentityName
245246 ingress : true
246247 hasProbesEndpoint : false
248+ revisionSuffix : revisionSuffix
247249 environmentVariables : accountManagementEnvironmentVariables
248250 }
249251}
@@ -268,6 +270,7 @@ module accountManagementApi '../modules/container-app.bicep' = {
268270 userAssignedIdentityName : accountManagementIdentityName
269271 ingress : true
270272 hasProbesEndpoint : true
273+ revisionSuffix : revisionSuffix
271274 environmentVariables : accountManagementEnvironmentVariables
272275 }
273276 dependsOn : [accountManagementWorkers ]
@@ -370,6 +373,7 @@ module backOfficeWorkers '../modules/container-app.bicep' = {
370373 userAssignedIdentityName : backOfficeIdentityName
371374 ingress : true
372375 hasProbesEndpoint : false
376+ revisionSuffix : revisionSuffix
373377 environmentVariables : backOfficeEnvironmentVariables
374378 }
375379}
@@ -394,6 +398,7 @@ module backOfficeApi '../modules/container-app.bicep' = {
394398 userAssignedIdentityName : backOfficeIdentityName
395399 ingress : true
396400 hasProbesEndpoint : true
401+ revisionSuffix : revisionSuffix
397402 environmentVariables : backOfficeEnvironmentVariables
398403 }
399404 dependsOn : [backOfficeWorkers ]
@@ -438,6 +443,7 @@ module appGateway '../modules/container-app.bicep' = {
438443 hasProbesEndpoint : false
439444 domainName : domainName == '' ? '' : domainName
440445 external : true
446+ revisionSuffix : revisionSuffix
441447 environmentVariables : [
442448 {
443449 name : 'AZURE_CLIENT_ID'
0 commit comments