Skip to content

Commit 88e8170

Browse files
authored
Merge pull request #44120 from catlike/b-aws_fsx_openzfs_file_system-update-max-user_and_group_quotas
Remove limit on user_and_group_quotas for aws_fsx_openzfs_file_system
2 parents 06ead65 + cd5eecd commit 88e8170

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.changelog/44120.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_file_system: Remove maximum items limit on the `user_and_group_quotas` argument
3+
```

internal/service/fsx/openzfs_file_system.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ func resourceOpenZFSFileSystem() *schema.Resource {
227227
Type: schema.TypeSet,
228228
Optional: true,
229229
Computed: true,
230-
MaxItems: 100,
231230
Elem: &schema.Resource{
232231
Schema: map[string]*schema.Schema{
233232
names.AttrID: {

website/docs/r/fsx_openzfs_file_system.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ The following arguments are optional:
5050
* `security_group_ids` - (Optional) A list of IDs for the security groups that apply to the specified network interfaces created for file system access. These security groups will apply to all network interfaces.
5151
* `skip_final_backup` - (Optional) When enabled, will skip the default final backup taken when the file system is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to `false`.
5252
* `storage_type` - (Optional) The filesystem storage type. Only `SSD` is supported.
53+
* `user_and_group_quotas` - (Optional) - Specify how much storage users or groups can use on the filesystem. 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.
5354
* `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.
5455
* `weekly_maintenance_start_time` - (Optional) The preferred start time (in `d:HH:MM` format) to perform weekly maintenance, in the UTC time zone.
5556

0 commit comments

Comments
 (0)