Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@ CVE-2024-49761 # https://avd.aquasec.com/nvd/cve-2024-49761 ## latest Jekyll Web
CVE-2024-47220 # https://avd.aquasec.com/nvd/cve-2024-47220 ## latest lint_roller (1.1.0) installs old version of rexml
CVE-2024-7254 # https://avd.aquasec.com/nvd/cve-2024-7254 ## latest Jekyll Webpack (0.2.7) installs old version of google-protobuf
CVE-2026-1615 # https://avd.aquasec.com/nvd/cve-2026-1615 ## jsonpath: Arbitrary Code Execution via unsafe JSON Path expression evaluation - Not fixed yet.
CVE-2026-32597
CVE-2026-32141
CVE-2026-1526
CVE-2026-1528
CVE-2026-2229
CVE-2026-33036
CVE-2026-33128
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module "lambda_lambda_apim_refresh_token" {
handler_function_name = "handler"
runtime = "nodejs22.x"
memory = 128
timeout = 5
timeout = 60
log_level = var.log_level
schedule = var.apim_auth_token_schedule

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module "mesh_acknowledge" {
handler_function_name = "handler.handler"
runtime = "python3.14"
memory = 128
timeout = 5
timeout = 60
log_level = var.log_level

force_lambda_code_deploy = var.force_lambda_code_deploy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module "report_sender" {
handler_function_name = "handler.handler"
runtime = "python3.14"
memory = 128
timeout = 5
timeout = 60
log_level = var.log_level

force_lambda_code_deploy = var.force_lambda_code_deploy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('PrintSender', () => {
url: mockPDFAnalysed.data.letterUri,
clientId: mockPDFAnalysed.data.senderId,
campaignId: 'digitalLetters',
letterVariantId: 'notify-digital-letter-standard',
letterVariantId: 'notify-digital-letters-standard',
}),
}),
]),
Expand Down
2 changes: 1 addition & 1 deletion lambdas/print-sender-lambda/src/app/print-sender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class PrintSender {
url: item.data.letterUri,
clientId: item.data.senderId,
campaignId: 'digitalLetters',
letterVariantId: 'notify-digital-letter-standard',
letterVariantId: 'notify-digital-letters-standard',
},
};

Expand Down
Loading