Skip to content

Commit

Permalink
Updates python Lambda functions to use python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gcardonag committed Jan 27, 2024
1 parent 98ea5de commit 846bea0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lambda-test_page_list.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ resource "aws_lambda_function" "test_page_list" {

source_code_hash = filebase64sha256(data.archive_file.test_page_list.output_path)

runtime = "python3.7"
runtime = "python3.12"

timeout = 5

Expand Down
2 changes: 1 addition & 1 deletion lambda-test_page_redirect.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "aws_lambda_function" "test_page_redirect" {

source_code_hash = filebase64sha256(data.archive_file.test_page_redirect.output_path)

runtime = "python3.8"
runtime = "python3.12"

tags = {
Terraform = true
Expand Down
2 changes: 1 addition & 1 deletion lambda-test_results_display.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "aws_lambda_function" "test_results_display" {

source_code_hash = filebase64sha256(data.archive_file.test_results_display.output_path)

runtime = "python3.7"
runtime = "python3.12"

tags = {
Terraform = true
Expand Down

0 comments on commit 846bea0

Please sign in to comment.