Skip to content

devops-workflow/terraform-github-teams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI

terraform-github-teams

Terraform module for managing Github teams

module "github-teams" {
  source  = "devops-workflow/teams/github"
  version = "0.0.1"

  teams = [
    {
      name = "team1"
    },
    {
      name        = "team-d"
      description = "Team with description"
    },
    {
      name        = "team-closed"
      description = "Closed team"
      privacy     = "closed"
    },
  ]
}