forked from teknofire/terraform-github-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysql.tf
30 lines (26 loc) · 746 Bytes
/
mysql.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 "mysql" {
source = "modules/repository"
name = "mysql"
description = "Sous Chefs MySQL Cookbook"
cookbook_team = "${github_team.mysql.id}"
}
resource "github_team" "mysql" {
name = "mysql"
description = "mysql Cookbook Maintainers"
privacy = "closed"
}
resource "github_team_membership" "mysql-maintainer-1" {
team_id = "${github_team.mysql.id}"
username = "rshade"
role = "maintainer"
}
resource "github_team_membership" "mysql-maintainer-2" {
team_id = "${github_team.mysql.id}"
username = "damacus"
role = "maintainer"
}
resource "github_team_membership" "mysql-maintainer-3" {
team_id = "${github_team.mysql.id}"
username = "iennae"
role = "maintainer"
}