From 114e97ba6cb844ce50e9278f2714442f0dc59d51 Mon Sep 17 00:00:00 2001 From: Zachary Winnerman <98712682+zwinnerman-fleetdm@users.noreply.github.com> Date: Tue, 3 Jan 2023 19:37:19 -0500 Subject: [PATCH] Make code match what we are running in prod for sandbox timeout (#9169) --- infrastructure/sandbox/JITProvisioner/jitprovisioner.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf index 030cd29574..24314ce660 100644 --- a/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf +++ b/infrastructure/sandbox/JITProvisioner/jitprovisioner.tf @@ -131,7 +131,7 @@ resource "aws_lambda_function" "jitprovisioner" { role = aws_iam_role.jitprovisioner.arn reserved_concurrent_executions = -1 kms_key_arn = var.kms_key.arn - timeout = 10 + timeout = 5 memory_size = 512 vpc_config { security_group_ids = [aws_security_group.jitprovisioner.id]