Skip to content

Commit

Permalink
feat: Upgrade python versions
Browse files Browse the repository at this point in the history
feat: Upgrade python versions
  • Loading branch information
grasshopper-josh authored Nov 7, 2024
2 parents 6a0d63f + d0c9d8e commit 533572b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions build_targets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,24 @@
"include": [
{
"name": "clickopsnotifier",
"runtime": "python3.7"
"runtime": "python3.8"
},
{
"name": "clickopsnotifier",
"runtime": "python3.8"
"runtime": "python3.9"
},
{
"name": "clickopsnotifier",
"runtime": "python3.9"
"runtime": "python3.10"
},
{
"name": "clickopsnotifier",
"runtime": "python3.11"
},
{
"name": "clickopsnotifier",
"runtime": "python3.12"
}

]
}
Binary file added deployment-clickopsnotifier-python3.10.zip
Binary file not shown.
Binary file added deployment-clickopsnotifier-python3.11.zip
Binary file not shown.
Binary file added deployment-clickopsnotifier-python3.12.zip
Binary file not shown.
Binary file removed deployment-clickopsnotifier-python3.7.zip
Binary file not shown.
Binary file modified deployment-clickopsnotifier-python3.8.zip
Binary file not shown.
Binary file modified deployment-clickopsnotifier-python3.9.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ variable "lambda_deployment_upload_to_s3_enabled" {

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

validation {
condition = contains([
"python3.9",
"python3.8",
"python3.7"
"python3.11"
], var.lambda_runtime)
error_message = "Invalid lambda_runtime provided."
}
Expand Down

0 comments on commit 533572b

Please sign in to comment.