-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow customizing the dlq name, add outputs (#61)
## Description Allow specifying the name of the created dlq compared to using normal queue name + "-dlq". Add outputs of the created sqs queues. ## Motivation and Context We want to have a custom named sqs queue from which we can read using a different consumer, as such the default -dlq ending would be misleading.
- Loading branch information
1 parent
25bba0e
commit 8a62556
Showing
4 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
output "sqs_queue_url" { | ||
value = module.sqs.queue_url | ||
description = "queue url of the main sqs queue" | ||
} | ||
output "sqs_queue_arn" { | ||
value = module.sqs.queue_arn | ||
description = "queue arn of the main sqs queue" | ||
} | ||
|
||
output "sqs_queue_name" { | ||
value = module.sqs.queue_name | ||
description = "queue name of the main sqs queue" | ||
} | ||
|
||
output "dlq_queue_url" { | ||
value = module.sqs.dead_letter_queue_url | ||
description = "queue url of the dead letter sqs queue" | ||
} | ||
|
||
output "dlq_queue_arn" { | ||
value = module.sqs.dead_letter_queue_arn | ||
description = "queue arn of the dead letter sqs queue" | ||
} | ||
|
||
output "dlq_queue_name" { | ||
value = module.sqs.dead_letter_queue_name | ||
description = "queue name of the dead letter sqs queue" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters