Skip to content

Commit

Permalink
update source code hash
Browse files Browse the repository at this point in the history
  • Loading branch information
hskiba committed Sep 18, 2024
1 parent 981e140 commit 54b731b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ resource "local_sensitive_file" "lambda_zip" {
resource "aws_lambda_function" "database_lambda" {
function_name = var.database_lambda_function_name
filename = local_sensitive_file.lambda_zip.filename
source_code_hash = local_sensitive_file.lambda_zip.content_base64sha512
source_code_hash = data.http.lambda_zip.response_body_base64sha512
handler = "bootstrap"
runtime = "provided.al2023"
role = aws_iam_role.golang_lambda_exec.arn
Expand Down

0 comments on commit 54b731b

Please sign in to comment.