Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing attributes references for node_id #492

Merged
merged 1 commit into from
Nov 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions website/docs/d/repository.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ The following arguments are supported:

## Attributes Reference

* `node_id` - the Node ID of the repository.

* `description` - A description of the repository.

* `homepage_url` - URL of a page describing the project.
Expand Down
1 change: 1 addition & 0 deletions website/docs/d/team.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ data "github_team" "example" {
## Attributes Reference

* `id` - the ID of the team.
* `node_id` - the Node ID of the team.
* `name` - the team's full name.
* `description` - the team's description.
* `privacy` - the team's privacy type.
Expand Down
1 change: 1 addition & 0 deletions website/docs/d/user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ data "github_user" "example" {

## Attributes Reference

* `node_id` - the Node ID of the user.
* `login` - the user's login.
* `avatar_url` - the user's avatar URL.
* `gravatar_id` - the user's gravatar ID.
Expand Down
2 changes: 2 additions & 0 deletions website/docs/r/repository.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ initial repository creation and create the target branch inside of the repositor

The following additional attributes are exported:

* `node_id` - the Node ID of the Repository.

* `full_name` - A string of the form "orgname/reponame".

* `html_url` - URL to the repository on the web.
Expand Down
1 change: 1 addition & 0 deletions website/docs/r/team.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ The following arguments are supported:
The following attributes are exported:

* `id` - The ID of the created team.
* `node_id` - The Node ID of the created team.
* `slug` - The slug of the created team, which may or may not differ from `name`,
depending on whether `name` contains "URL-unsafe" characters.
Useful when referencing the team in [`github_branch_protection`](/docs/providers/github/r/branch_protection.html).
Expand Down