Skip to content

Commit 26f977c

Browse files
Add missing attributes references for node_id (integrations#492)
Adds missing attribute references for node_id within the: * repository data source and resource * team data source and resource * user data source
1 parent 6096068 commit 26f977c

5 files changed

+7
-0
lines changed

website/docs/d/repository.html.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ The following arguments are supported:
2727

2828
## Attributes Reference
2929

30+
* `node_id` - the Node ID of the repository.
31+
3032
* `description` - A description of the repository.
3133

3234
* `homepage_url` - URL of a page describing the project.

website/docs/d/team.html.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ data "github_team" "example" {
2424
## Attributes Reference
2525

2626
* `id` - the ID of the team.
27+
* `node_id` - the Node ID of the team.
2728
* `name` - the team's full name.
2829
* `description` - the team's description.
2930
* `privacy` - the team's privacy type.

website/docs/d/user.html.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ data "github_user" "example" {
2323

2424
## Attributes Reference
2525

26+
* `node_id` - the Node ID of the user.
2627
* `login` - the user's login.
2728
* `avatar_url` - the user's avatar URL.
2829
* `gravatar_id` - the user's gravatar ID.

website/docs/r/repository.html.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ initial repository creation and create the target branch inside of the repositor
9292

9393
The following additional attributes are exported:
9494

95+
* `node_id` - the Node ID of the Repository.
96+
9597
* `full_name` - A string of the form "orgname/reponame".
9698

9799
* `html_url` - URL to the repository on the web.

website/docs/r/team.html.markdown

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ The following arguments are supported:
3939
The following attributes are exported:
4040

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

0 commit comments

Comments
 (0)