-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
34 lines (28 loc) · 1.06 KB
/
outputs.tf
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
31
32
33
34
output "cloudwatch_log_group_arn" {
description = "ARN of cloudwatch log group which holds service-specific log events."
value = aws_cloudwatch_log_group.this["events_logger"].arn
}
output "cloudwatch_log_group_name" {
description = "Name of cloudwatch log group which holds service-specific log events."
value = aws_cloudwatch_log_group.this["events_logger"].name
}
output "event_rule_arn" {
description = "ARN of the event bridge rule."
value = aws_cloudwatch_event_rule.this.arn
}
output "event_rule_id" {
description = "ID of the event bridge rule."
value = aws_cloudwatch_event_rule.this.id
}
output "event_rule_name" {
description = "Name of the event bridge rule."
value = aws_cloudwatch_event_rule.this.name
}
output "event_target_arn" {
description = "ARN of the resource targeted by the eventbridge target."
value = aws_cloudwatch_event_target.this.arn
}
output "event_target_rule" {
description = "Eventbridge rule responsible for invoking the target."
value = aws_cloudwatch_event_target.this.rule
}