Skip to content

Commit

Permalink
Add admin users to Langchain4j extension (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand authored Nov 13, 2023
1 parent f9dbbad commit 288e6cd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform-scripts/quarkus-langchain4j.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ resource "github_team_membership" "quarkus_langchain4j" {
username = each.value
role = "maintainer"
}

# Add admin users
resource "github_repository_collaborator" "quarkus_langchain4j" {
for_each = { for tm in ["geoand", "cescoffier"] : tm => tm }
repository = github_repository.quarkus_langchain4j.name
username = each.value
permission = "admin"
}

0 comments on commit 288e6cd

Please sign in to comment.