mirror of
https://github.com/sigmasternchen/terraform-aws-eventbridge
synced 2025-03-15 07:58:57 +00:00
ran pre-commit on all files
This commit is contained in:
parent
7090438450
commit
65b4308b2a
1 changed files with 2 additions and 2 deletions
|
@ -24,12 +24,12 @@ output "eventbridge_permission_ids" {
|
||||||
# EventBridge Rule
|
# EventBridge Rule
|
||||||
output "eventbridge_rule_ids" {
|
output "eventbridge_rule_ids" {
|
||||||
description = "The EventBridge Rule IDs created"
|
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" {
|
output "eventbridge_rule_arns" {
|
||||||
description = "The EventBridge Rule ARNs created"
|
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
|
# IAM Role
|
||||||
|
|
Loading…
Reference in a new issue