generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathoutputs.tf
29 lines (24 loc) · 910 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_id" {
description = "The ID of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].id, null)
}
output "alert_policy_name" {
description = "Name of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].name, null)
}
output "alert_policy_filter" {
description = "Filters of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].filter, null)
}
output "alert_policy_tags" {
description = "Tags of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].tags, null)
}
output "alert_policy_priority" {
description = "Priority of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].priority, null)
}
output "alert_policy_responders" {
description = "Responders of the Opsgenie Alert Policy"
value = try(opsgenie_alert_policy.this[0].responders, null)
}