Skip to content

Commit

Permalink
Bump runtime to python-3.7, and reduce RAM requirement
Browse files Browse the repository at this point in the history
Update to use python-3.7 runtime because it's stable and available.
  • Loading branch information
jinnko committed Feb 13, 2019
1 parent d935666 commit 0e0d1fe
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 @@ -50,7 +50,7 @@ resource "aws_lambda_function" "notify_slack" {
role = "${aws_iam_role.lambda.arn}"
handler = "notify_slack.lambda_handler"
source_code_hash = "${data.archive_file.notify_slack.0.output_base64sha256}"
runtime = "python3.6"
runtime = "python3.7"
timeout = 30
kms_key_arn = "${var.kms_key_arn}"

Expand Down

0 comments on commit 0e0d1fe

Please sign in to comment.