We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f7a750 + 84f481e commit e9eb536Copy full SHA for e9eb536
.changelog/44514.txt
@@ -0,0 +1,3 @@
1
+```release-note:enhancement
2
+resource/aws_ebs_volume: Update `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
3
+```
internal/service/ec2/ebs_volume.go
@@ -114,7 +114,7 @@ func resourceEBSVolume() *schema.Resource {
114
Type: schema.TypeInt,
115
Optional: true,
116
Computed: true,
117
- ValidateFunc: validation.IntBetween(125, 1000),
+ ValidateFunc: validation.IntBetween(125, 2000),
118
},
119
names.AttrType: {
120
Type: schema.TypeString,
0 commit comments