generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
outputs.tf
115 lines (93 loc) · 3.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
output "alert_policy_id" {
description = "The ID of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_id
}
output "alert_policy_name" {
description = "Name of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_name
}
output "alert_policy_filter" {
description = "Filters of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_filter
}
output "alert_policy_tags" {
description = "Tags of the Opsgenie Alert Policy"
value = module.alert_policy.alert_policy_tags
}
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
}
output "api_integration_api_key" {
description = "API key of the created integration"
value = module.api_integration.api_integration_api_key
sensitive = true
}
output "api_integration_name" {
description = "The name of the Opsgenie API Integration"
value = module.api_integration.api_integration_name
}
output "api_integration_id" {
description = "The ID of the Opsgenie API Integration"
value = module.api_integration.api_integration_id
}
output "escalation_id" {
description = "The ID of the Opsgenie Escalation"
value = module.escalation.escalation_id
}
output "escalation_name" {
description = "Name of the Opsgenie Escalation"
value = module.escalation.escalation_name
}
output "integration_action_id" {
description = "The ID of the Opsgenie Integration Action"
value = module.integration_action.integration_action_id
}
output "notification_policy_id" {
description = "The ID of the Opsgenie Notification Policy"
value = module.notification_policy.notification_policy_id
}
output "notification_policy_name" {
description = "The name of the Opsgenie Notification Policy"
value = module.notification_policy.notification_policy_name
}
output "team_id" {
description = "The ID of the Opsgenie Team"
value = module.team.team_id
}
output "team_name" {
description = "The name of the Opsgenie Team"
value = module.team.team_name
}
output "team_routing_rule_id" {
description = "The ID of the Opsgenie Team Routing Rule"
value = module.team_routing_rule.team_routing_rule_id
}
output "team_routing_rule_name" {
description = "The name of the Opsgenie Team Routing Rule"
value = module.team_routing_rule.team_routing_rule_name
}
output "user_id" {
description = "The ID of the Opsgenie User"
value = module.user.user_id
}
output "user_name" {
description = "The name of the Opsgenie User"
value = module.user.user_name
}
output "service_id" {
description = "The ID of the Opsgenie Service"
value = module.service.service_id
}
output "service_name" {
description = "The name of the Opsgenie Service"
value = module.service.service_name
}
output "service_incident_rule_id" {
description = "The ID of the Opsgenie Service Incident Rule"
value = module.service_incident_rule.service_incident_rule_id
}