Skip to content

Commit 7cbedc6

Browse files
authored
Update folder docs (#38)
1 parent 3169773 commit 7cbedc6

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ go.work.sum
2626

2727
.DS_Store
2828

29+
.idea
30+
2931
*.tfstate
3032
*.tfstate.backup

docs/resources/folder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "retool_folder" "resource_example" {
3333

3434
### Required
3535

36-
- `folder_type` (String) The type of the folder: (app|file|resource|workflow).
36+
- `folder_type` (String) The type of the folder: (app|resource|workflow).
3737
- `name` (String) The name of the folder.
3838

3939
### Optional

internal/provider/folder/resource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func (r *folderResource) Schema(_ context.Context, _ resource.SchemaRequest, res
103103
},
104104
"folder_type": schema.StringAttribute{
105105
Required: true,
106-
Description: "The type of the folder: (app|file|resource|workflow).",
106+
Description: "The type of the folder: (app|resource|workflow).",
107107
PlanModifiers: []planmodifier.String{
108108
stringplanmodifier.RequiresReplace(), // Changing the folder type requires replacing the resource.
109109
},

0 commit comments

Comments
 (0)