gpt4 book ai didi

aws-lambda - Terraform 在 zip 准备好之前创建 lambda

转载 作者:行者123 更新时间:2023-12-05 09:10:28 28 4
gpt4 key购买 nike

我正在尝试创建一个 Terraform 模块来构建我的 JS lambda、压缩它们并部署它们。然而,这被证明是有问题的

resource "null_resource" "build_lambda" {
count = length(var.lambdas)

provisioner "local-exec" {
command = "mkdir tmp"
working_dir = path.root
}

provisioner "local-exec" {
command = var.lambdas[count.index].code.build_command
working_dir = var.lambdas[count.index].code.working_dir
}
}

data "archive_file" "lambda_zip" {
count = length(var.lambdas)
type = "zip"
source_dir = var.lambdas[count.index].code.working_dir
output_path = "${path.root}/tmp/${count.index}.zip"

depends_on = [
null_resource.build_lambda
]
}

/*******************************************************
* Lambda definition
*******************************************************/
resource "aws_lambda_function" "lambda" {
count = length(var.lambdas)
filename = data.archive_file.lambda_zip[count.index].output_path
source_code_hash = filebase64sha256(data.archive_file.lambda_zip[count.index].output_path)
function_name = "${var.application_name}-${var.lambdas[count.index].name}"
description = var.lambdas[count.index].description

handler = var.lambdas[count.index].handler
runtime = var.lambdas[count.index].runtime
role = aws_iam_role.iam_for_lambda.arn
memory_size = var.lambdas[count.index].memory_size

depends_on = [aws_iam_role_policy_attachment.lambda_logs, aws_cloudwatch_log_group.log_group, data.archive_file.lambda_zip]
}

属性 source_code_hash = filebase64sha256(data.archive_file.lambda_zip[count.index].output_path) 虽然在技术上不是强制性的,但却是必要的,否则现有的 lambda 将永远不会像 Terraform 认为的那样被覆盖它仍然是相同版本的 lambda,并且将完全跳过部署。不幸的是,它看起来像方法 filebase64sha256 在创建任何资源之前被评估。这意味着没有用于哈希计算的 zip,所以我得到了错误

Error: Error in function call

on modules\api-gateway-lambda\main.tf line 35, in resource "aws_lambda_function" "lambda":
35: source_code_hash = filebase64sha256(data.archive_file.lambda_zip[count.index].output_path)
|----------------
| count.index is 0
| data.archive_file.lambda_zip is tuple with 1 element

Call to function "filebase64sha256" failed: no file exists at tmp\0.zip.

如果我手动将一个 zip 放在正确的位置,我可以看到整个过程开始工作并且 zip 最终被一个新的 zip 覆盖,但在这种情况下哈希必须来自以前的 zip。以正确的顺序执行整个事情的正确方法是什么?

最佳答案

The archive_file data source有自己的 output_base64sha256 属性,可以在不要求 Terraform 读取尚不存在的文件的情况下为您提供相同的结果:

  source_code_hash = data.archive_file.lambda_zip[count.index].output_base64sha256

数据源将在创建文件的同时填充它,并且由于您的 lambda 函数依赖于数据源,因此它在评估 lambda 函数配置之前始终可用。

关于aws-lambda - Terraform 在 zip 准备好之前创建 lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61412266/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com