-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquarkus-github-app.tf
45 lines (41 loc) · 1.55 KB
/
quarkus-github-app.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
37
38
39
40
41
42
43
44
45
# Create repository
resource "github_repository" "quarkus_github_app" {
name = "quarkus-github-app"
description = "Develop your GitHub Apps in Java with Quarkus."
archive_on_destroy = true
delete_branch_on_merge = true
has_issues = true
has_projects = true
has_discussions = true
vulnerability_alerts = true
homepage_url = "https://docs.quarkiverse.io/quarkus-github-app/dev/index.html"
topics = ["quarkus-extension"]
}
# Create team
resource "github_team" "quarkus_github_app" {
name = "quarkiverse-github-app"
description = "Quarkiverse team for the GitHub App extension"
create_default_maintainer = false
privacy = "closed"
parent_team_id = data.github_team.quarkiverse_members.id
}
# Add team to repository
resource "github_team_repository" "quarkus_github_app" {
team_id = github_team.quarkus_github_app.id
repository = github_repository.quarkus_github_app.name
permission = "maintain"
}
# Add users to the team
resource "github_team_membership" "quarkus_github_app" {
for_each = { for tm in ["gsmet"] : tm => tm }
team_id = github_team.quarkus_github_app.id
username = each.value
role = "maintainer"
}
# Add outside collaborators to the repository
resource "github_repository_collaborator" "quarkus_github_app" {
for_each = { for tm in ["yrodiere"] : tm => tm }
repository = github_repository.quarkus_github_app.name
username = each.value
permission = "push"
}