-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathteams.tf
More file actions
33 lines (25 loc) · 825 Bytes
/
teams.tf
File metadata and controls
33 lines (25 loc) · 825 Bytes
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
module "team_reviewers" {
source = "mineiros-io/team/github"
version = "0.1.2"
name = "Reviewers"
description = "A team of users that are mandatory for reviewing Pull Requests."
privacy = "secret"
members = [
local.member_users["stephe@acme.com"],
local.member_users["angela@acme.com"]
]
maintainers = values(local.admin_users)
}
module "team_contributors" {
source = "mineiros-io/team/github"
version = "0.1.2"
name = "Contributors"
description = "A team of users that have the permission to contribute to repositories that are assigned to the team."
privacy = "secret"
members = [
local.member_users["stephe@acme.com"],
local.member_users["angela@acme.com"],
local.member_users["jenz@acme.com"]
]
maintainers = values(local.admin_users)
}