Skip to content

Commit a5a3d16

Browse files
authored
Merge pull request #44118 from catlike/b-aws_fsx_openzfs_volume-update-max-user_and_group_quotas
Remove limit on user_and_group_quotas for aws_fsx_openzfs_volume
2 parents 88e8170 + c586133 commit a5a3d16

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.changelog/44118.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
resource/aws_fsx_openzfs_volume: Remove maximum items limit on the `user_and_group_quotas` argument
3+
```

internal/service/fsx/openzfs_volume.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ func resourceOpenZFSVolume() *schema.Resource {
174174
Type: schema.TypeSet,
175175
Optional: true,
176176
Computed: true,
177-
MaxItems: 100,
178177
Elem: &schema.Resource{
179178
Schema: map[string]*schema.Schema{
180179
names.AttrID: {

website/docs/r/fsx_openzfs_volume.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This resource supports the following arguments:
3636
* `origin_snapshot` - (Optional) Specifies the configuration to use when creating the OpenZFS volume. See [`origin_snapshot` Block](#origin_snapshot-block) below for details.
3737
* `storage_capacity_quota_gib` - (Optional) The maximum amount of storage in gibibytes (GiB) that the volume can use from its parent.
3838
* `storage_capacity_reservation_gib` - (Optional) The amount of storage in gibibytes (GiB) to reserve from the parent volume.
39-
* `user_and_group_quotas` - (Optional) - Specify how much storage users or groups can use on the volume. Maximum of 100 items. See [`user_and_group_quotas` Block](#user_and_group_quotas-block) Below.
39+
* `user_and_group_quotas` - (Optional) - Specify how much storage users or groups can use on the volume. Maximum number of items defined by [FSx for OpenZFS Resource quota](https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/limits.html#limits-openzfs-resources-file-system). See [`user_and_group_quotas` Block](#user_and_group_quotas-block) Below.
4040
* `tags` - (Optional) A map of tags to assign to the file system. If configured with a provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
4141

4242
### `nfs_exports` Block

0 commit comments

Comments
 (0)