Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 12, 2022
1 parent 42441a7 commit 4891d64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloudtrail/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ output "s3_bucket_id" {
output "sqs_arn" {
description = "Main SQS ARNs (main, deadletter)"
value = {
"main" = var.eanble_sqs ? aws_sqs_queue.cloudtrail[0].arn : null
"deadletter" = var.eanble_sqs ? aws_sqs_queue.cloudtrail_deadletter[0].arn : null
"main" = var.enable_sqs ? aws_sqs_queue.cloudtrail[0].arn : null
"deadletter" = var.enable_sqs ? aws_sqs_queue.cloudtrail_deadletter[0].arn : null
}
}

Expand Down

0 comments on commit 4891d64

Please sign in to comment.