diff --git a/docs/data-sources/access_group.md b/docs/data-sources/access_group.md new file mode 100644 index 00000000..851137e9 --- /dev/null +++ b/docs/data-sources/access_group.md @@ -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 + +### 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. diff --git a/docs/data-sources/access_group_project.md b/docs/data-sources/access_group_project.md new file mode 100644 index 00000000..ed724843 --- /dev/null +++ b/docs/data-sources/access_group_project.md @@ -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 + +### 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. diff --git a/docs/resources/access_group.md b/docs/resources/access_group.md new file mode 100644 index 00000000..e2818c2d --- /dev/null +++ b/docs/resources/access_group.md @@ -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 + +### 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. diff --git a/docs/resources/access_group_project.md b/docs/resources/access_group_project.md new file mode 100644 index 00000000..7f72f551 --- /dev/null +++ b/docs/resources/access_group_project.md @@ -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 + +### 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.