Skip to content

Commit

Permalink
generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgreenstock committed Nov 18, 2024
1 parent a2b73d5 commit bcd2f26
Show file tree
Hide file tree
Showing 4 changed files with 111 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/data-sources/access_group.md
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.
29 changes: 29 additions & 0 deletions docs/data-sources/access_group_project.md
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.
28 changes: 28 additions & 0 deletions docs/resources/access_group.md
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.
26 changes: 26 additions & 0 deletions docs/resources/access_group_project.md
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.

0 comments on commit bcd2f26

Please sign in to comment.