Skip to content

Commit

Permalink
fix: upgrade deprecated Python Lambda runtime (#104)
Browse files Browse the repository at this point in the history
Upgrade to Python 3.12 Lambda runtime.
  • Loading branch information
patheard authored Apr 23, 2024
1 parent 87bd120 commit 3bcac62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/lambda/lambda-warmer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "aws_lambda_function" "lambda-warmer" {
handler = "lambda-warmer.handler"
memory_size = 128
role = aws_iam_role.lambda-iam-role.arn
runtime = "python3.8"
runtime = "python3.12"
source_code_hash = data.archive_file.lambda-warmer.output_base64sha256
timeout = 60

Expand Down

0 comments on commit 3bcac62

Please sign in to comment.