-
Notifications
You must be signed in to change notification settings - Fork 13
/
quarkus-jackson-jq.tf
33 lines (30 loc) · 1.12 KB
/
quarkus-jackson-jq.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
# Create repository
resource "github_repository" "quarkus_jackson_jq" {
name = "quarkus-jackson-jq"
description = "Quarkus extension for the Jackson JQ library"
delete_branch_on_merge = true
has_issues = true
vulnerability_alerts = true
topics = ["quarkus-extension"]
}
# Create team
resource "github_team" "quarkus_jackson_jq" {
name = "quarkiverse-jackson-jq"
description = "Quarkiverse team for the Jackson JQ 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_jackson_jq" {
team_id = github_team.quarkus_jackson_jq.id
repository = github_repository.quarkus_jackson_jq.name
permission = "maintain"
}
# Add users to the team
resource "github_team_membership" "quarkus_jackson_jq" {
for_each = { for tm in ["ricardozanini", "aloubyansky"] : tm => tm }
team_id = github_team.quarkus_jackson_jq.id
username = each.value
role = "maintainer"
}