-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
64 lines (52 loc) · 1.67 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
output "escalation_id" {
description = "The ID of the Opsgenie escalation"
value = module.escalation.escalation_id
}
output "escalation_name" {
description = "The name of the Opsgenie escalation"
value = module.escalation.escalation_name
}
output "api_integration_id" {
description = "The ID of the Opsgenie integration"
value = module.api_integration.api_integration_id
}
output "api_integration_name" {
description = "The name of the Opsgenie integration"
value = module.api_integration.api_integration_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 "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 "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
}