Skip to content

Commit

Permalink
Merge pull request Coalfire-Research#73 from J005/master
Browse files Browse the repository at this point in the history
Changed node runtime version
  • Loading branch information
c6fc authored Feb 7, 2020
2 parents ffb0cff + dff17a8 commit 8a31318
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/jsonnet/lambda_functions.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"role": "${aws_iam_role.lambda_proxy_api_handler.arn}",
"handler": "main.main",
"source_code_hash": "${data.archive_file.proxy_api_handler.output_base64sha256}",
"runtime": "nodejs8.10",
"runtime": "nodejs12.x",
"timeout": 60,

"dead_letter_config": {
Expand All @@ -22,7 +22,7 @@
"role": "${aws_iam_role.lambda_status_reporter.arn}",
"handler": "main.main",
"source_code_hash": "${data.archive_file.status_reporter.output_base64sha256}",
"runtime": "nodejs8.10",
"runtime": "nodejs12.x",
"timeout": 60,

"dead_letter_config": {
Expand All @@ -36,7 +36,7 @@
"role": "${aws_iam_role.lambda_spot_monitor.arn}",
"handler": "main.main",
"source_code_hash": "${data.archive_file.spot_monitor.output_base64sha256}",
"runtime": "nodejs8.10",
"runtime": "nodejs12.x",
"memory_size": 512,
"timeout": 10,

Expand Down Expand Up @@ -109,4 +109,4 @@
}
}
}
}
}

0 comments on commit 8a31318

Please sign in to comment.