Skip to content

Commit e6540e4

Browse files
authored
Fix for invalid configuration (#466)
1 parent fd131c5 commit e6540e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resource "random_string" "random" {
1818
resource "aws_sqs_queue" "queued_builds" {
1919
name = "${var.environment}-queued-builds.fifo"
2020
delay_seconds = 30
21-
visibility_timeout_seconds = 60
21+
visibility_timeout_seconds = var.runners_scale_up_lambda_timeout
2222
fifo_queue = true
2323
receive_wait_time_seconds = 10
2424
content_based_deduplication = true

0 commit comments

Comments
 (0)