-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared--synthetic.tf
63 lines (60 loc) · 1.97 KB
/
shared--synthetic.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
module "amethyst--synthetic" {
source = "./modules/synthetic"
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,
]
var--endpoints = {
"google.com" = var.location.amer
"youtube.com" = var.location.emea
"facebook.com" = var.location.apac
}
}
module "burgundy--synthetic" {
source = "./modules/synthetic"
providers = { newrelic = newrelic.burgundy }
var--alias = var.account.burgundy.alias
var--runbook_url = "https://obfuscated.com"
var--channel_ids = [
module.burgundy--channel.out--channel_id.email,
module.burgundy--channel.out--channel_id.pagerduty,
]
var--endpoints = {
"twitter.com" = var.location.amer
"instagram.com" = var.location.emea
"yahoo.com" = var.location.apac
}
}
module "cerulean--synthetic" {
source = "./modules/synthetic"
providers = { newrelic = newrelic.cerulean }
var--alias = var.account.cerulean.alias
var--runbook_url = "https://obfuscated.com"
var--channel_ids = [
module.cerulean--channel.out--channel_id.email,
module.cerulean--channel.out--channel_id.pagerduty,
]
var--endpoints = {
"whatsapp.com" = var.location.amer
"amazon.com" = var.location.emea
"netflix.com" = var.location.apac
}
}
module "dartmouth--synthetic" {
source = "./modules/synthetic"
providers = { newrelic = newrelic.dartmouth }
var--alias = var.account.dartmouth.alias
var--runbook_url = "https://obfuscated.com"
var--channel_ids = [
module.dartmouth--channel.out--channel_id.email,
module.dartmouth--channel.out--channel_id.pagerduty,
]
var--endpoints = {
"office.com" = var.location.amer
"reddit.com" = var.location.emea
"linkedin.com" = var.location.apac
}
}