-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathoutputs.tf
More file actions
30 lines (24 loc) · 912 Bytes
/
outputs.tf
File metadata and controls
30 lines (24 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
output "service_domain_name" {
value = local.service_domain_name
}
output "dynamodb_table_name" {
value = aws_dynamodb_table.events-dynamodb-table.name
}
output "imms_delta_table_name" {
value = aws_dynamodb_table.delta-dynamodb-table.name
}
output "aws_sqs_queue_name" {
value = aws_sqs_queue.dlq.name
}
output "id_sync_queue_arn" {
description = "The ARN of the ID Sync (MNS NHS Number change) SQS queue"
value = aws_sqs_queue.id_sync_queue.arn
}
output "mns_test_queue_url" {
value = var.mns_publisher_feature_enabled ? module.mns_publisher[0].mns_test_queue_url : null
description = "URL of the MNS test notifications queue (from mns_publisher module)"
}
output "mns_test_queue_arn" {
value = var.mns_publisher_feature_enabled ? module.mns_publisher[0].mns_test_queue_arn : null
description = "ARN of the MNS test notifications queue (from mns_publisher module)"
}