Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infra/dirty_lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_lambda_function" "dirty" {

timeout = 5
handler = "main.handler"
runtime = "nodejs8.10"
runtime = "nodejs10.x"

role = aws_iam_role.iam_for_lambda_dirty.arn

Expand Down
2 changes: 1 addition & 1 deletion infra/google_key_updater.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "aws_lambda_function" "google_key_updater" {
# TODO: need a big *ss timeout on this one
timeout = 5
handler = "main.handler"
runtime = "nodejs8.10"
runtime = "nodejs10.x"

role = aws_iam_role.iam_for_lambda_google_key_updater.arn

Expand Down
2 changes: 1 addition & 1 deletion infra/unsplash_lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_lambda_function" "unsplash" {
function_name = var.unsplash_name
filename = data.external.build-function-unsplash.result.build_function_zip_path
handler = "main.handler"
runtime = "nodejs8.10"
runtime = "nodejs10.x"
timeout = 10

role = aws_iam_role.iam_for_unsplash_lambda.arn
Expand Down