Skip to content

Commit

Permalink
adds filebase64sha256 for lambda source_code_hash
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanlalexander committed Jul 2, 2020
1 parent e485648 commit 6cfd11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_lambda_function" "lambda_function" {
description = "Creates report of AWS Services in Organization accounts and saves to Excel spreadsheet in S3 bucket"
role = aws_iam_role.iam_role.arn
handler = "grace-inventory-lambda"
source_code_hash = filesha256(var.source_file)
source_code_hash = filebase64sha256(var.source_file)
kms_key_arn = aws_kms_key.kms_key.arn
runtime = "go1.x"
timeout = 900
Expand Down

0 comments on commit 6cfd11b

Please sign in to comment.