github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/github/d/team.html.markdown (about)

     1  ---
     2  layout: "github"
     3  page_title: "Github: github_team"
     4  sidebar_current: "docs-github-datasource-team"
     5  description: |-
     6    Get information on a Github team.
     7  ---
     8  
     9  # github\_team
    10  
    11  Use this data source to retrieve information about a Github team.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  data "github_team" "example" {
    17    slug = "example"
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23   * `slug` - (Required) The team slug.
    24  
    25  ## Attributes Reference
    26  
    27   * `name` - the team's full name.
    28   * `description` - the team's description.
    29   * `privacy` - the team's privacy type.
    30   * `permission` - the team's permission level.