Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 596 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 596 Bytes

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"
    },
  ]
}