Skip to content

Commit 5536667

Browse files
committed
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
1 parent c5718c8 commit 5536667

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,9 @@ variable "lambda_runtime" {
153153
validation {
154154
condition = contains([
155155
"python3.9",
156-
"python3.8",
157-
"python3.11"
156+
"python3.11",
157+
"python3.12",
158+
"python3.13"
158159
], var.lambda_runtime)
159160
error_message = "Invalid lambda_runtime provided."
160161
}

0 commit comments

Comments
 (0)