Skip to content

Commit 533572b

Browse files
feat: Upgrade python versions
feat: Upgrade python versions
2 parents 6a0d63f + d0c9d8e commit 533572b

8 files changed

+15
-6
lines changed

build_targets.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,24 @@
22
"include": [
33
{
44
"name": "clickopsnotifier",
5-
"runtime": "python3.7"
5+
"runtime": "python3.8"
66
},
77
{
88
"name": "clickopsnotifier",
9-
"runtime": "python3.8"
9+
"runtime": "python3.9"
1010
},
1111
{
1212
"name": "clickopsnotifier",
13-
"runtime": "python3.9"
13+
"runtime": "python3.10"
14+
},
15+
{
16+
"name": "clickopsnotifier",
17+
"runtime": "python3.11"
18+
},
19+
{
20+
"name": "clickopsnotifier",
21+
"runtime": "python3.12"
1422
}
23+
1524
]
1625
}
928 KB
Binary file not shown.
1.02 MB
Binary file not shown.
1 MB
Binary file not shown.
-863 KB
Binary file not shown.
70.7 KB
Binary file not shown.
70.8 KB
Binary file not shown.

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,14 +147,14 @@ variable "lambda_deployment_upload_to_s3_enabled" {
147147

148148
variable "lambda_runtime" {
149149
type = string
150-
description = "The lambda runtime to use. One of: `[\"python3.9\", \"python3.8\", \"python3.7\"]`"
151-
default = "python3.8"
150+
description = "The lambda runtime to use. One of: `[\"python3.9\", \"python3.8\", \"python3.11\"]`"
151+
default = "python3.11"
152152

153153
validation {
154154
condition = contains([
155155
"python3.9",
156156
"python3.8",
157-
"python3.7"
157+
"python3.11"
158158
], var.lambda_runtime)
159159
error_message = "Invalid lambda_runtime provided."
160160
}

0 commit comments

Comments
 (0)