Skip to content

Commit e8d83b3

Browse files
committed
Update python runtime to supported version
Support for python3.9 runs out on October 30, 2025. This change ensures that we remain in support and this example continues working after February 3, 2026. See https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
1 parent 3fe2e86 commit e8d83b3

File tree

1 file changed

+1
-1
lines changed
  • modules/scenarios/message-size-breach

1 file changed

+1
-1
lines changed

modules/scenarios/message-size-breach/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ resource "aws_lambda_function" "image_processor" {
4646
role = aws_iam_role.lambda_role.arn
4747
handler = "lambda_function.lambda_handler"
4848
source_code_hash = filebase64sha256("${path.module}/lambda_function.zip")
49-
runtime = "python3.9"
49+
runtime = "python3.13"
5050
timeout = var.lambda_timeout
5151

5252
# This will fail when batch size × message size > 256KB (Lambda async limit)

0 commit comments

Comments
 (0)