From cd5ac42226a13d4a4013503edb252387177f265a Mon Sep 17 00:00:00 2001 From: Corey Lane Date: Thu, 31 Aug 2023 11:51:55 -0500 Subject: [PATCH 1/2] increase max iops --- internal/service/fsx/ontap_file_system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/fsx/ontap_file_system.go b/internal/service/fsx/ontap_file_system.go index e68b6f7c21f9..2b291f4a67e4 100644 --- a/internal/service/fsx/ontap_file_system.go +++ b/internal/service/fsx/ontap_file_system.go @@ -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, From 4f4d4e6fa43b17e5d3f377a46fa172b6778d1977 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Fri, 1 Sep 2023 13:33:01 -0400 Subject: [PATCH 2/2] Add CHANGELOG entry. --- .changelog/33263.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/33263.txt diff --git a/.changelog/33263.txt b/.changelog/33263.txt new file mode 100644 index 000000000000..d80cb7627e68 --- /dev/null +++ b/.changelog/33263.txt @@ -0,0 +1,3 @@ +```release-note:bug +resource/aws_fsx_ontap_file_system: Increase maximum value of `disk_iops_configuration.iops` to `160000` +``` \ No newline at end of file