From b8929c85f78a191393285d4c5158b7d37355d807 Mon Sep 17 00:00:00 2001 From: Keith Cantrell Date: Wed, 9 Oct 2024 14:16:34 -0500 Subject: [PATCH] Adjust the timeout for the Lambda function to 10 seconds. --- Management-Utilities/fsxn-rotate-secret/terraform/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/Management-Utilities/fsxn-rotate-secret/terraform/main.tf b/Management-Utilities/fsxn-rotate-secret/terraform/main.tf index ca71341..d3d950e 100644 --- a/Management-Utilities/fsxn-rotate-secret/terraform/main.tf +++ b/Management-Utilities/fsxn-rotate-secret/terraform/main.tf @@ -107,6 +107,7 @@ resource "aws_lambda_function" "rotateLambdaFunction" { runtime = "python3.12" handler = "fsxn_rotate_secret.lambda_handler" filename = "fsxn_rotate_secret.zip" + timeout = 10 source_code_hash = data.archive_file.lambda.output_base64sha256 } #