-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
28 lines (25 loc) · 1.17 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
##########################################################################
### CLOUDWATCH_LOG_RESOURCE_POLICY
##########################################################################
output "cloudwatch_log_resource_policy_id" {
description = "The name of the CloudWatch log resource policy"
value = try(module.cloudwatch_log_resource_policy[0].id, "")
}
##########################################################################
### CLOUDWATCH_LOG_GROUP
##########################################################################
output "cloudwatch_log_group_arn" {
description = "The Amazon Resource Name (ARN) specifying the log group"
value = try(module.cloudwatch_log_group[0].arn, "")
}
##########################################################################
### CLOUDWATCH_METRIC_ALARM
##########################################################################
output "cloudwatch_metric_alarm_arn" {
description = "The ARN of the CloudWatch Metric Alarm"
value = try(module.cloudwatch_metric_alarm.arn, "")
}
output "cloudwatch_metric_alarm_id" {
description = "The ID of the health check"
value = try(module.cloudwatch_metric_alarm.id, "")
}