File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44resource "aws_sqs_queue" "mns_test_notification" {
55 name = " ${ var . mns_test_notification_name_prefix } -queue"
66 fifo_queue = false
7- kms_master_key_id = aws_kms_key . mns_outbound_events . arn
7+ message_retention_seconds = 14400
88 visibility_timeout_seconds = 300
99}
1010
Original file line number Diff line number Diff line change @@ -18,3 +18,13 @@ output "id_sync_queue_arn" {
1818 description = " The ARN of the ID Sync (MNS NHS Number change) SQS queue"
1919 value = aws_sqs_queue. id_sync_queue . arn
2020}
21+
22+ output "mns_test_queue_url" {
23+ value = aws_sqs_queue. mns_test_notifications . url
24+ description = " URL of the MNS test notifications queue"
25+ }
26+
27+ output "mns_test_queue_arn" {
28+ value = aws_sqs_queue. mns_test_notifications . arn
29+ description = " ARN of the MNS test notifications queue"
30+ }
You can’t perform that action at this time.
0 commit comments