Skip to content

Commit

Permalink
Merge pull request #33263 from coreylane/b-aws_fsx_ontap_file_system-…
Browse files Browse the repository at this point in the history
…increase-max-iops

fix r/aws_fsx_ontap_file_system - increase max iops
  • Loading branch information
ewbankkit authored Sep 1, 2023
2 parents 3764a3c + 4f4d4e6 commit 770c4d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/33263.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_fsx_ontap_file_system: Increase maximum value of `disk_iops_configuration.iops` to `160000`
```
2 changes: 1 addition & 1 deletion internal/service/fsx/ontap_file_system.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func ResourceOntapFileSystem() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(0, 80000),
ValidateFunc: validation.IntBetween(0, 160000),
},
"mode": {
Type: schema.TypeString,
Expand Down

0 comments on commit 770c4d2

Please sign in to comment.