From 65b4308b2af4236fbf36d9343cce1a9fee49bd2d Mon Sep 17 00:00:00 2001 From: overflowerror Date: Fri, 6 Aug 2021 09:33:32 +0200 Subject: [PATCH] ran pre-commit on all files --- outputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs.tf b/outputs.tf index adeeb9c..c3fbad9 100644 --- a/outputs.tf +++ b/outputs.tf @@ -24,12 +24,12 @@ output "eventbridge_permission_ids" { # EventBridge Rule output "eventbridge_rule_ids" { description = "The EventBridge Rule IDs created" - value = var.create_rules ? { for p in sort(keys(var.rules)) : p => aws_cloudwatch_event_rule.this[p].id } : {} + value = var.create_rules ? { for p in sort(keys(var.rules)) : p => aws_cloudwatch_event_rule.this[p].id } : {} } output "eventbridge_rule_arns" { description = "The EventBridge Rule ARNs created" - value = var.create_rules ? { for p in sort(keys(var.rules)) : p => aws_cloudwatch_event_rule.this[p].arn } : {} + value = var.create_rules ? { for p in sort(keys(var.rules)) : p => aws_cloudwatch_event_rule.this[p].arn } : {} } # IAM Role