From 5536667b4e78dde9cd81af96bb8dbae063dd6d32 Mon Sep 17 00:00:00 2001 From: Nikola Tosic <1170273+toshke@users.noreply.github.com> Date: Fri, 24 Oct 2025 09:34:11 +1100 Subject: [PATCH] chore: add Python 3.13 runtime and deprecate Python 3.8 Add support for Python 3.13 runtime and mark Python 3.8 as deprecated --- variables.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 773f3b6..b7aad56 100644 --- a/variables.tf +++ b/variables.tf @@ -153,8 +153,9 @@ variable "lambda_runtime" { validation { condition = contains([ "python3.9", - "python3.8", - "python3.11" + "python3.11", + "python3.12", + "python3.13" ], var.lambda_runtime) error_message = "Invalid lambda_runtime provided." }