wrong name

This commit is contained in:
Jun-te Kim 2025-09-10 17:09:36 +01:00
parent 5b9f0f7219
commit 152e690358

View file

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