forked from teknofire/terraform-github-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongodb.tf
31 lines (26 loc) · 802 Bytes
/
mongodb.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
module "mongodb" {
source = "modules/repository"
name = "mongodb"
cookbook_team = "${github_team.mongodb.id}"
homepage_url = "https://supermarket.chef.io/cookbooks/sc-mongodb"
}
resource "github_team" "mongodb" {
name = "mongodb"
description = "MongoDB Cookbook Maintainers"
privacy = "closed"
}
resource "github_team_membership" "mongodb-maintainer-1" {
team_id = "${github_team.mongodb.id}"
username = "damacus"
role = "maintainer"
}
resource "github_team_membership" "mongodb-maintainer-2" {
team_id = "${github_team.mongodb.id}"
username = "shortdudey123"
role = "maintainer"
}
resource "github_team_membership" "mongodb-maintainer-4" {
team_id = "${github_team.mongodb.id}"
username = "swalberg"
role = "maintainer"
}