forked from teknofire/terraform-github-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nrpe.tf
30 lines (26 loc) · 754 Bytes
/
nrpe.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
module "nrpe" {
source = "modules/repository"
name = "nrpe"
description = "Chef cookbook to install Nagios NRPE client"
cookbook_team = "${github_team.nrpe.id}"
}
resource "github_team" "nrpe" {
name = "nrpe"
description = "NRPE Cookbook Maintainers"
privacy = "closed"
}
resource "github_team_membership" "nrpe-maintainer-1" {
team_id = "${github_team.nrpe.id}"
username = "sbotman"
role = "maintainer"
}
resource "github_team_membership" "nrpe-maintainer-2" {
team_id = "${github_team.nrpe.id}"
username = "shoekstra"
role = "maintainer"
}
resource "github_team_membership" "nrpe-maintainer-3" {
team_id = "${github_team.nrpe.id}"
username = "tas50"
role = "maintainer"
}