-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2b73d5
commit bcd2f26
Showing
4 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "vercel_access_group Data Source - terraform-provider-vercel" | ||
subcategory: "" | ||
description: |- | ||
Provides information about an existing Access Group. | ||
--- | ||
|
||
# vercel_access_group (Data Source) | ||
|
||
Provides information about an existing Access Group. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) The Access Group ID to be retrieved. | ||
|
||
### Optional | ||
|
||
- `team_id` (String) The ID of the team the Access Group should exist under. Required when configuring a team resource if a default team has not been set in the provider. | ||
|
||
### Read-Only | ||
|
||
- `name` (String) The name of the Access Group. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "vercel_access_group_project Data Source - terraform-provider-vercel" | ||
subcategory: "" | ||
description: |- | ||
Provides information about an existing Access Group Project. | ||
--- | ||
|
||
# vercel_access_group_project (Data Source) | ||
|
||
Provides information about an existing Access Group Project. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `access_group_id` (String) The Access Group ID. | ||
- `project_id` (String) The Project ID. | ||
|
||
### Optional | ||
|
||
- `team_id` (String) The ID of the team the Access Group Project should exist under. Required when configuring a team resource if a default team has not been set in the provider. | ||
|
||
### Read-Only | ||
|
||
- `role` (String) The Access Group Project Role. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "vercel_access_group Resource - terraform-provider-vercel" | ||
subcategory: "" | ||
description: |- | ||
hello world | ||
--- | ||
|
||
# vercel_access_group (Resource) | ||
|
||
hello world | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) The name of the Access Group | ||
|
||
### Optional | ||
|
||
- `team_id` (String) The ID of the team the Access Group should exist under. Required when configuring a team resource if a default team has not been set in the provider. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of the Access Group. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "vercel_access_group_project Resource - terraform-provider-vercel" | ||
subcategory: "" | ||
description: |- | ||
hello world | ||
--- | ||
|
||
# vercel_access_group_project (Resource) | ||
|
||
hello world | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `access_group_id` (String) The ID of the Access Group. | ||
- `project_id` (String) The Project ID to assign to the access group. | ||
- `role` (String) The project role to assign to the access group. Must be either `ADMIN`, `PROJECT_DEVELOPER`, or `PROJECT_VIEWER`. | ||
|
||
### Optional | ||
|
||
- `team_id` (String) The ID of the team the access group project should exist under. Required when configuring a team resource if a default team has not been set in the provider. |