generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
outputs.tf
29 lines (24 loc) · 828 Bytes
/
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
output "alert_policy" {
description = "Opsgenie Alert Policy"
value = module.alert_policy
}
output "alert_policy_name" {
description = "Name of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_name
}
output "alert_policy_tags" {
description = "Tags of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_tags
}
output "alert_policy_filter" {
description = "Filter of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_filter
}
output "alert_policy_priority" {
description = "Priority of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_priority
}
output "alert_policy_responders" {
description = "Responders of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_responders
}