Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SBGoods committed Aug 6, 2024
1 parent 79a2935 commit 9f9e239
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Terraform Provider: Archive

The Archive provider interacts with files.
It provides a data source that can create zip archives for individual files or
It provides a data source that can create zip or tar.gz archives for individual files or
collections of files.

## Documentation, questions and discussions
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/file.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ description: |-
### Required

- `output_path` (String) The output of the archive file.
- `type` (String) The type of archive to generate. NOTE: `zip` is supported.
- `type` (String) The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.

### Optional

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resource_archive_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (d *archiveFileResource) Schema(ctx context.Context, req resource.SchemaReq
Computed: true,
},
"type": schema.StringAttribute{
Description: "The type of archive to generate. NOTE: `zip` is supported.",
Description: "The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.",
Required: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
Expand Down

0 comments on commit 9f9e239

Please sign in to comment.