-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsc-mysql.tf
36 lines (31 loc) · 933 Bytes
/
sc-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
31
32
33
34
35
36
resource "github_repository" "sc-mysql" {
name = "sc-mysql"
description = "Sous Chefs MySQL Cookbook"
has_issues = "true"
has_wiki = "true"
}
resource "github_team_repository" "sc-mysql_repo" {
team_id = "${github_team.sc-mysql_team.id}"
repository = "sc-mysql"
permission = "admin"
}
resource "github_team" "sc-mysql_team" {
name = "sc-mysql"
description = "sc-mysql Cookbook Maintainers"
privacy = "closed"
}
resource "github_team_membership" "sc-mysql-maintainer-1" {
team_id = "${github_team.sc-mysql_team.id}"
username = "rshade"
role = "maintainer"
}
resource "github_team_membership" "sc-mysql-maintainer-2" {
team_id = "${github_team.sc-mysql_team.id}"
username = "damacus"
role = "maintainer"
}
resource "github_team_membership" "sc-mysql-maintainer-3" {
team_id = "${github_team.sc-mysql_team.id}"
username = "iennae"
role = "maintainer"
}