terraform-github-team icon indicating copy to clipboard operation
terraform-github-team copied to clipboard

A Terraform module to manage GitHub Teams. https://github.com/

Results 4 terraform-github-team issues
Sort by recently updated
recently updated
newest added

Hey there! First of all great module 💪 While using it I noticed there is the possibility to use [github_team_members](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/team_members) to manage team membership so terraform becomes ultimately authoritative for...

When GitHub is backed by an identity provider users can be backed with [github_team_sync_group_mapping](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/team_sync_group_mapping) the usage is quite hacky at the moment but it would be neat if this module...

- adds support to choose between using `github_team_members` or `github_team_membership` fix #61

There is a `github_team_settings` resource for (currently) controlling review request delegation. It is configured like so: ```hcl resource "github_team_settings" "code_review_settings" { team_id = github_team.some_team.id review_request_delegation { algorithm = "ROUND_ROBIN" member_count...