From 834f579f9f0dd9872eb116f90fcd1c74349f87eb Mon Sep 17 00:00:00 2001 From: phoenixAja Date: Tue, 12 Sep 2023 12:10:57 -0700 Subject: [PATCH] increase batch timeout to seven days --- terraform/modules/swipe-sfn/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/modules/swipe-sfn/variables.tf b/terraform/modules/swipe-sfn/variables.tf index c137aea1..1f3bc1fa 100644 --- a/terraform/modules/swipe-sfn/variables.tf +++ b/terraform/modules/swipe-sfn/variables.tf @@ -92,7 +92,7 @@ variable "batch_job_docker_image" { variable "batch_job_timeout_seconds" { description = "Timeout after which Batch will terminate jobs (Step Functions has a separate timeout for the SFN execution)" type = number - default = 86400 + default = 604800 # 7 days } variable "batch_spot_job_queue_arn" {