mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-11 13:00:14 -04:00
* Add github_team data source * github_team: add doc * github_team data source: fix acceptance test
31 lines
572 B
Markdown
31 lines
572 B
Markdown
---
|
|
layout: "github"
|
|
page_title: "Github: github_team"
|
|
sidebar_current: "docs-github-datasource-team"
|
|
description: |-
|
|
Get information on a Github team.
|
|
---
|
|
|
|
# github\_team
|
|
|
|
Use this data source to retrieve information about a Github team.
|
|
|
|
## Example Usage
|
|
|
|
```
|
|
data "github_team" "example" {
|
|
slug = "example"
|
|
}
|
|
```
|
|
|
|
## Argument Reference
|
|
|
|
* `slug` - (Required) The team slug.
|
|
|
|
## Attributes Reference
|
|
|
|
* `name` - the team's full name.
|
|
* `description` - the team's description.
|
|
* `privacy` - the team's privacy type.
|
|
* `permission` - the team's permission level.
|