An open API service indexing awesome lists of open source software.

https://github.com/tomohiro/tf_github

:octocat: A Terraform module for managing teams and members of GitHub organization
https://github.com/tomohiro/tf_github

github terraform

Last synced: 6 months ago
JSON representation

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

Awesome Lists containing this project

README

          

tf_github
================================================================================

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

Usage
--------------------------------------------------------------------------------

```js
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.