diff options
| author | Alex <git@ajschof.me> | 2024-08-20 15:53:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-20 15:53:04 +0100 |
| commit | b31ea8ba86a7a381c390ad068ea5449a9313b020 (patch) | |
| tree | 7f2f12f3e7af5fb306f108168b5f1f6085a39cf6 /terraform/lambda.tf | |
| parent | a393d59e052d3a37d66f7a657a15cad1d486e3b1 (diff) | |
| parent | ed8282c2e400a5a7ed3e0490743ddc0cc6b86e1f (diff) | |
| download | de-project-bentley-b31ea8ba86a7a381c390ad068ea5449a9313b020.tar.gz de-project-bentley-b31ea8ba86a7a381c390ad068ea5449a9313b020.zip | |
Merge pull request #78 from ajschofield/main
pr: merge lambda timeout hotfix into development
Diffstat (limited to 'terraform/lambda.tf')
| -rw-r--r-- | terraform/lambda.tf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/terraform/lambda.tf b/terraform/lambda.tf index f8e7515..d33a6c9 100644 --- a/terraform/lambda.tf +++ b/terraform/lambda.tf @@ -70,6 +70,7 @@ resource "aws_lambda_function" "extract_lambda" { handler = "extract_lambda.lambda_handler" runtime = "python3.11" source_code_hash = data.archive_file.extract_lambda_zip.output_base64sha256 + timeout = 180 lifecycle { create_before_destroy = true @@ -103,6 +104,7 @@ resource "aws_lambda_function" "transform_lambda" { handler = "transform_lambda.lambda_handler" runtime = "python3.11" source_code_hash = data.archive_file.transform_lambda_zip.output_base64sha256 + timeout = 180 lifecycle { create_before_destroy = true @@ -136,6 +138,7 @@ resource "aws_lambda_function" "load_lambda" { handler = "load_lambda.lambda_handler" runtime = "python3.11" source_code_hash = data.archive_file.load_lambda_zip.output_base64sha256 + timeout = 180 lifecycle { create_before_destroy = true |
