change visibility'

This commit is contained in:
Jun-te Kim 2025-09-10 17:19:50 +01:00
parent 152e690358
commit 00fe4fea2b

View file

@ -11,6 +11,8 @@ data "aws_ecr_repository" "extractor_and_loader" {
# SQS queue for extractor_and_loader
resource "aws_sqs_queue" "extractor_and_loader_queue" {
name = "extractor-loader-queue"
visibility_timeout_seconds = 1800 # 30 minutes (>= 300s; ~6x rule of thumb)
receive_wait_time_seconds = 20 # optional: long polling
}