We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce52c0 commit fcafbfaCopy full SHA for fcafbfa
lambda.tf
@@ -37,7 +37,7 @@ resource "aws_lambda_function" "encrypt" {
37
function_name = module.encrypt_label.id
38
tags = module.encrypt_label.tags
39
handler = "encrypt.handler"
40
- runtime = "nodejs8.10"
+ runtime = "nodejs12.x"
41
timeout = 10
42
role = aws_iam_role.lambda.arn
43
depends_on = [data.archive_file.encrypt]
@@ -56,7 +56,7 @@ resource "aws_lambda_function" "decrypt" {
56
function_name = module.decrypt_label.id
57
tags = module.decrypt_label.tags
58
handler = "decrypt.handler"
59
60
61
62
depends_on = [data.archive_file.decrypt]
0 commit comments