Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 3bfe8f1

Browse files
committed
Migrate runtime nodejs8.10 -> nodejs10.x for EOL
1 parent 63a76e3 commit 3bfe8f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infra/dirty_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "aws_lambda_function" "dirty" {
44

55
timeout = 5
66
handler = "main.handler"
7-
runtime = "nodejs8.10"
7+
runtime = "nodejs10.x"
88

99
role = aws_iam_role.iam_for_lambda_dirty.arn
1010

infra/google_key_updater.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ resource "aws_lambda_function" "google_key_updater" {
1414
# TODO: need a big *ss timeout on this one
1515
timeout = 5
1616
handler = "main.handler"
17-
runtime = "nodejs8.10"
17+
runtime = "nodejs10.x"
1818

1919
role = aws_iam_role.iam_for_lambda_google_key_updater.arn
2020

infra/unsplash_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ resource "aws_lambda_function" "unsplash" {
77
function_name = var.unsplash_name
88
filename = data.external.build-function-unsplash.result.build_function_zip_path
99
handler = "main.handler"
10-
runtime = "nodejs8.10"
10+
runtime = "nodejs10.x"
1111
timeout = 10
1212

1313
role = aws_iam_role.iam_for_unsplash_lambda.arn

0 commit comments

Comments
 (0)