-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared--apm_alert.tf
43 lines (40 loc) · 1.4 KB
/
shared--apm_alert.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
module "amethyst--alerts" {
source = "./modules/apm_alert"
providers = { newrelic = newrelic.amethyst }
var--alias = var.account.amethyst.alias
var--runbook_url = "https://obfuscated.com"
var--channel_ids = [
module.amethyst--channel.out--channel_id.email,
module.amethyst--channel.out--channel_id.pagerduty,
]
}
module "burgundy--alerts" {
source = "./modules/apm_alert"
providers = { newrelic = newrelic.burgundy }
var--runbook_url = "https://obfuscated.com"
var--alias = var.account.burgundy.alias
var--channel_ids = [
module.burgundy--channel.out--channel_id.email,
module.burgundy--channel.out--channel_id.pagerduty,
]
}
module "cerulean--alerts" {
source = "./modules/apm_alert"
providers = { newrelic = newrelic.cerulean }
var--runbook_url = "https://obfuscated.com"
var--alias = var.account.cerulean.alias
var--channel_ids = [
module.cerulean--channel.out--channel_id.email,
module.cerulean--channel.out--channel_id.pagerduty,
]
}
module "dartmouth--alerts" {
source = "./modules/apm_alert"
providers = { newrelic = newrelic.dartmouth }
var--runbook_url = "https://obfuscated.com"
var--alias = var.account.dartmouth.alias
var--channel_ids = [
module.dartmouth--channel.out--channel_id.email,
module.dartmouth--channel.out--channel_id.pagerduty,
]
}