forked from teknofire/terraform-github-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac_os_x.tf
25 lines (24 loc) · 799 Bytes
/
mac_os_x.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
# module "mac_os_x" {
# source = "modules/repository"
# name = "mac_os_x"
# cookbook_team = "${github_team.mac_os_x.id}"
# team_permission = "pull"
# everyone_permission = "pull"
# description = "This cookbook has been deprecated"
# archived = "true"
# }
# resource "github_team" "mac_os_x" {
# name = "mac_os_x"
# description = "Mac OS X Cookbook Maintainers"
# privacy = "closed"
# }
# resource "github_team_membership" "mac_os_x-maintainer-1" {
# team_id = "${github_team.mac_os_x.id}"
# username = "damacus"
# role = "maintainer"
# }
# resource "github_team_membership" "mac_os_x-maintainer-2" {
# team_id = "${github_team.mac_os_x.id}"
# username = "tas50"
# role = "maintainer"
# }