-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathautobots.tf
37 lines (33 loc) · 991 Bytes
/
autobots.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
/* autobots.tf */
resource "pagerduty_user" "bumblebee" {
name = "Bumblebee"
email = "[email protected]"
color = "yellow"
role = "user"
job_title = "Soldier"
teams = ["${pagerduty_team.autobots.id}", "${pagerduty_team.transformers.id}"]
}
resource "pagerduty_user" "cliffjumper" {
name = "Cliffjumper"
email = "[email protected]"
color = "red"
role = "user"
job_title = "Soldier"
teams = ["${pagerduty_team.autobots.id}", "${pagerduty_team.transformers.id}"]
}
resource "pagerduty_user" "grimlock" {
name = "Grimlock"
email = "[email protected]"
color = "white"
role = "user"
job_title = "Dinosaur"
teams = ["${pagerduty_team.autobots.id}", "${pagerduty_team.transformers.id}"]
}
resource "pagerduty_user" "optimus" {
name = "Optimus Prime"
email = "[email protected]"
color = "dark-blue"
role = "admin"
job_title = "Leader"
teams = ["${pagerduty_team.autobots.id}", "${pagerduty_team.transformers.id}"]
}