aboutsummaryrefslogtreecommitdiffstats
path: root/terraform
diff options
context:
space:
mode:
authorAlex Schofield <git@ajschof.me>2024-08-20 15:50:23 +0100
committerAlex Schofield <git@ajschof.me>2024-08-20 15:50:23 +0100
commitd1f3fd505c4deea8cc811a851cda15d00419ade3 (patch)
tree7f2f12f3e7af5fb306f108168b5f1f6085a39cf6 /terraform
parenta393d59e052d3a37d66f7a657a15cad1d486e3b1 (diff)
downloadde-project-bentley-d1f3fd505c4deea8cc811a851cda15d00419ade3.tar.gz
de-project-bentley-d1f3fd505c4deea8cc811a851cda15d00419ade3.zip
hotfix: increase lambda timeout
Diffstat (limited to 'terraform')
-rw-r--r--terraform/lambda.tf3
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
git.ajschof.me — hosted by ajschofield — powered by cgit