-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
73 lines (53 loc) · 1.43 KB
/
main.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
provider "opsgenie" {
api_key = var.opsgenie_provider_api_key
}
module "alert_policy" {
source = "./modules/alert_policy"
alert_policy = var.alert_policy
context = module.this.context
}
module "api_integration" {
source = "./modules/api_integration"
api_integration = var.api_integration
context = module.this.context
}
module "escalation" {
source = "./modules/escalation"
escalation = var.escalation
context = module.this.context
}
module "integration_action" {
source = "./modules/integration_action"
integration_action = var.integration_action
context = module.this.context
}
module "notification_policy" {
source = "./modules/notification_policy"
notification_policy = var.notification_policy
context = module.this.context
}
module "team" {
source = "./modules/team"
team = var.team
context = module.this.context
}
module "team_routing_rule" {
source = "./modules/team_routing_rule"
team_routing_rule = var.team_routing_rule
context = module.this.context
}
module "user" {
source = "./modules/user"
user = var.user
context = module.this.context
}
module "service" {
source = "./modules/service"
service = var.service
context = module.this.context
}
module "service_incident_rule" {
source = "./modules/service_incident_rule"
service_incident_rule = var.service_incident_rule
context = module.this.context
}