Skip to content

Commit

Permalink
Fix typo, clean up acceptance tests and fix implementation of Longest…
Browse files Browse the repository at this point in the history
…CommonPrefix
  • Loading branch information
jdoldis committed Sep 29, 2024
1 parent 484cbad commit 31e7e95
Show file tree
Hide file tree
Showing 5 changed files with 259 additions and 193 deletions.
2 changes: 1 addition & 1 deletion docs/resources/external_volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Resource used to manage external volume objects. For more information, check [ex
### Required

- `name` (String) Identifier for the external volume; must be unique for your account. Due to technical limitations (read more [here](https://github.com/Snowflake-Labs/terraform-provider-snowflake/blob/main/docs/technical-documentation/identifiers_rework_design_decisions.md#known-limitations-and-identifier-recommendations)), avoid using the following characters: `|`, `.`, `(`, `)`, `"`
- `storage_location` (Block List, Min: 1) Set of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. Note that not all parameter combindations are valid as they depend on the given storage_provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this. (see [below for nested schema](#nestedblock--storage_location))
- `storage_location` (Block List, Min: 1) List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. Note that not all parameter combinations are valid as they depend on the given storage_provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this. (see [below for nested schema](#nestedblock--storage_location))

### Optional

Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/external_volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var externalVolumeSchema = map[string]*schema.Schema{
Type: schema.TypeList,
Required: true,
MinItems: 1,
Description: "Set of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. Note that not all parameter combindations are valid as they depend on the given storage_provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.",
Description: "List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. Note that not all parameter combinations are valid as they depend on the given storage_provider. Consult [the docs](https://docs.snowflake.com/en/sql-reference/sql/create-external-volume#cloud-provider-parameters-cloudproviderparams) for more details on this.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"storage_location_name": {
Expand Down
Loading

0 comments on commit 31e7e95

Please sign in to comment.