File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,8 @@ var setByPipelineSecretEnvVars = [
4343 { name : 'GeneralSettings__ApplicationInsightsConnectionString' , secretName : 'application-insights-connection-string' }
4444]
4545
46- // In production we override authorization url to circumvent APIM to relieve load
47- var optionalOverrideAuthSecrets = environment == 'production' ? [
48- { name : 'AltinnOptions__OverrideAuthorizationUrl' , secretName : 'override-authorization-url' }
49- { name : 'AltinnOptions__OverrideAuthorizationThumbprint' , secretName : 'override-authorization-thumbprint' }
50- ] : []
51-
5246// Combine required and optional secrets
53- var alwaysSetEnvVars = concat (predefinedKeyvaultSecretEnvVars , setByPipelineSecretEnvVars )
54- var secretEnvVars = concat (alwaysSetEnvVars , optionalOverrideAuthSecrets )
47+ var secretEnvVars = concat (predefinedKeyvaultSecretEnvVars , setByPipelineSecretEnvVars )
5548
5649// Extract secrets configuration from env var configs
5750var secrets = [for config in secretEnvVars : {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ resource postgres 'Microsoft.DBforPostgreSQL/flexibleServers@2024-08-01' = {
2323 storage : {
2424 storageSizeGB : environment == 'production' ? 8192 : prodLikeEnvironment ? 4096 : 32
2525 autoGrow : 'Enabled'
26- tier : prodLikeEnvironment ? 'P50' : 'P4'
26+ tier : environment == 'production' ? 'P60' : prodLikeEnvironment ? 'P50' : 'P4'
2727 }
2828 backup : { backupRetentionDays : 35 }
2929 authConfig : {
You can’t perform that action at this time.
0 commit comments