Skip to content

Commit

Permalink
feat(lambda): bump python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
diodonfrost committed Jun 6, 2023
1 parent 000f275 commit b0eddbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ resource "aws_lambda_function" "this" {
function_name = var.name
role = var.custom_iam_role_arn == null ? aws_iam_role.this[0].arn : var.custom_iam_role_arn
handler = "scheduler.main.lambda_handler"
runtime = "python3.7"
runtime = "python3.9"
timeout = "600"
kms_key_arn = var.kms_key_arn == null ? "" : var.kms_key_arn

Expand Down

0 comments on commit b0eddbb

Please sign in to comment.