We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6a22c9 commit dcbde02Copy full SHA for dcbde02
1 file changed
infrastructure/instance/outputs.tf
@@ -20,11 +20,11 @@ output "id_sync_queue_arn" {
20
}
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"
+ 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)"
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"
+ 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)"
30
0 commit comments