Skip to content

:octocat: A Terraform module for managing teams and members of GitHub organization

Notifications You must be signed in to change notification settings

tomohiro/tf_github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

tf_github

A Terraform module for managing teams and members of GitHub organization.

Usage

module "github" {
  source = "github.com/Tomohiro/tf_github"

  admins = [
    "alan"
  ]

  members = [
    "john",
    "jane"
  ]

  secret_teams = {
    owners = "Owners"
    admins = "Administrators"
  }

  closed_teams = {
    committers   = "Core Committers"
    contributors = "Contributors"
  }
}

Module Input Variables

  • admins - List of admin of a GitHub organization
  • members - List of member of a GitHub organization
  • secret_teams - Map of secret team of a GitHub organization
  • closed_teams - Map of closed team of a GitHub organization

Outputs

LICENSE

© 2016 Tomohiro TAIRA.

About

:octocat: A Terraform module for managing teams and members of GitHub organization

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages