Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcgreenstock committed Nov 18, 2024
1 parent 4201a81 commit 327d4af
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 10 deletions.
3 changes: 3 additions & 0 deletions docs/data-sources/access_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ page_title: "vercel_access_group Data Source - terraform-provider-vercel"
subcategory: ""
description: |-
Provides information about an existing Access Group.
For more detailed information, please see the Vercel documentation https://vercel.com/docs/accounts/team-members-and-roles/access-groups.
---

# vercel_access_group (Data Source)

Provides information about an existing Access Group.

For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).



<!-- schema generated by tfplugindocs -->
Expand Down
7 changes: 5 additions & 2 deletions docs/data-sources/access_group_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
page_title: "vercel_access_group_project Data Source - terraform-provider-vercel"
subcategory: ""
description: |-
Provides information about an existing Access Group Project.
Provides information about an existing Access Group Project Assignment.
For more detailed information, please see the Vercel documentation https://vercel.com/docs/accounts/team-members-and-roles/access-groups.
---

# vercel_access_group_project (Data Source)

Provides information about an existing Access Group Project.
Provides information about an existing Access Group Project Assignment.

For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).



Expand Down
10 changes: 8 additions & 2 deletions docs/resources/access_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
page_title: "vercel_access_group Resource - terraform-provider-vercel"
subcategory: ""
description: |-
hello world
Provides an Access Group Resource.
Access Groups provide a way to manage groups of Vercel users across projects on your team. They are a set of project role assignations, a combination of Vercel users and the projects they work on.
For more detailed information, please see the Vercel documentation https://vercel.com/docs/accounts/team-members-and-roles/access-groups.
---

# vercel_access_group (Resource)

hello world
Provides an Access Group Resource.

Access Groups provide a way to manage groups of Vercel users across projects on your team. They are a set of project role assignations, a combination of Vercel users and the projects they work on.

For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).



Expand Down
10 changes: 8 additions & 2 deletions docs/resources/access_group_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
page_title: "vercel_access_group_project Resource - terraform-provider-vercel"
subcategory: ""
description: |-
hello world
Provides an Access Group Project Resource.
An Access Group Project resource defines the relationship between a vercel_access_group and a vercel_project.
For more detailed information, please see the Vercel documentation https://vercel.com/docs/accounts/team-members-and-roles/access-groups.
---

# vercel_access_group_project (Resource)

hello world
Provides an Access Group Project Resource.

An Access Group Project resource defines the relationship between a `vercel_access_group` and a `vercel_project`.

For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).



Expand Down
6 changes: 5 additions & 1 deletion vercel/data_source_access_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ func (d *accessGroupDataSource) Configure(ctx context.Context, req datasource.Co

func (r *accessGroupDataSource) Schema(_ context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: `Provides information about an existing Access Group.`,
Description: `
Provides information about an existing Access Group.
For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).
`,
Attributes: map[string]schema.Attribute{
"team_id": schema.StringAttribute{
Optional: true,
Expand Down
6 changes: 5 additions & 1 deletion vercel/data_source_access_group_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ func (d *accessGroupProjectDataSource) Configure(ctx context.Context, req dataso

func (r *accessGroupProjectDataSource) Schema(_ context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: `Provides information about an existing Access Group Project.`,
Description: `
Provides information about an existing Access Group Project Assignment.
For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).
`,
Attributes: map[string]schema.Attribute{
"team_id": schema.StringAttribute{
Optional: true,
Expand Down
8 changes: 7 additions & 1 deletion vercel/resource_access_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ func (r *accessGroupResource) Configure(ctx context.Context, req resource.Config

func (r *accessGroupResource) Schema(_ context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: `hello world`,
Description: `
Provides an Access Group Resource.
Access Groups provide a way to manage groups of Vercel users across projects on your team. They are a set of project role assignations, a combination of Vercel users and the projects they work on.
For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).
`,
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "The ID of the Access Group.",
Expand Down
8 changes: 7 additions & 1 deletion vercel/resource_access_group_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ func (r *accessGroupProjectResource) Configure(ctx context.Context, req resource

func (r *accessGroupProjectResource) Schema(_ context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: `hello world`,
Description: `
Provides an Access Group Project Resource.
An Access Group Project resource defines the relationship between a ` + "`vercel_access_group` and a `vercel_project`." + `
For more detailed information, please see the [Vercel documentation](https://vercel.com/docs/accounts/team-members-and-roles/access-groups).
`,
Attributes: map[string]schema.Attribute{
"access_group_id": schema.StringAttribute{
Description: "The ID of the Access Group.",
Expand Down

0 comments on commit 327d4af

Please sign in to comment.