Skip to content

Commit

Permalink
Merge pull request #24 from netdata/feat/update-docs
Browse files Browse the repository at this point in the history
feat: update docs
  • Loading branch information
witalisoft authored May 9, 2024
2 parents 4f49a5b + 8c160da commit bf12a36
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 12 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.1.3

FEATURES:

- more detailed resource descriptions

## 0.1.2

BUGFIXES:

- fix bug with empty claim token

## 0.1.1

BUGFIXES:
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/room.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "netdata_room Resource - terraform-provider-netdata"
subcategory: ""
description: |-
Provides a Netdata Cloud Room resource.
Provides a Netdata Cloud Room resource. Use this resource to manage rooms in the selected space.
---

# netdata_room (Resource)

Provides a Netdata Cloud Room resource.
Provides a Netdata Cloud Room resource. Use this resource to manage rooms in the selected space.

## Example Usage

Expand Down
4 changes: 2 additions & 2 deletions docs/resources/room_member.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "netdata_room_member Resource - terraform-provider-netdata"
subcategory: ""
description: |-
Provides a Netdata Cloud Room Member resource.
Provides a Netdata Cloud Room Member resource. Use this resource to manage user membership to the room in the selected space. It is referring to the user created at the space level.
---

# netdata_room_member (Resource)

Provides a Netdata Cloud Room Member resource.
Provides a Netdata Cloud Room Member resource. Use this resource to manage user membership to the room in the selected space. It is referring to the user created at the space level.

## Example Usage

Expand Down
4 changes: 2 additions & 2 deletions docs/resources/space.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "netdata_space Resource - terraform-provider-netdata"
subcategory: ""
description: |-
Provides a Netdata Cloud Space resource.
Provides a Netdata Cloud Space resource. Use this resource to manage spaces.
---

# netdata_space (Resource)

Provides a Netdata Cloud Space resource.
Provides a Netdata Cloud Space resource. Use this resource to manage spaces.

## Example Usage

Expand Down
4 changes: 2 additions & 2 deletions docs/resources/space_member.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "netdata_space_member Resource - terraform-provider-netdata"
subcategory: ""
description: |-
Provides a Netdata Cloud Space Member resource.
Provides a Netdata Cloud Space Member resource. Use this resource to manage user membership to the space.
---

# netdata_space_member (Resource)

Provides a Netdata Cloud Space Member resource.
Provides a Netdata Cloud Space Member resource. Use this resource to manage user membership to the space.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/room_member_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (s *roomMemberResource) Metadata(ctx context.Context, req resource.Metadata

func (s *roomMemberResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "Provides a Netdata Cloud Room Member resource.",
Description: "Provides a Netdata Cloud Room Member resource. Use this resource to manage user membership to the room in the selected space. It is referring to the user created at the space level.",
Attributes: map[string]schema.Attribute{
"room_id": schema.StringAttribute{
Description: "The Room ID of the space",
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/room_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (s *roomResource) Metadata(ctx context.Context, req resource.MetadataReques

func (s *roomResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "Provides a Netdata Cloud Room resource.",
Description: "Provides a Netdata Cloud Room resource. Use this resource to manage rooms in the selected space.",
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "The ID of the room",
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/space_member_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (s *spaceMemberResource) Metadata(ctx context.Context, req resource.Metadat

func (s *spaceMemberResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "Provides a Netdata Cloud Space Member resource.",
Description: "Provides a Netdata Cloud Space Member resource. Use this resource to manage user membership to the space.",
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "The Member ID of the space",
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/space_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (s *spaceResource) Metadata(ctx context.Context, req resource.MetadataReque

func (s *spaceResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "Provides a Netdata Cloud Space resource.",
Description: "Provides a Netdata Cloud Space resource. Use this resource to manage spaces.",
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "The ID of the space",
Expand Down

0 comments on commit bf12a36

Please sign in to comment.