Skip to content

Commit e9eb536

Browse files
authored
Merge pull request #44514 from fuziontech/ebs_gp3_throughput_2000
Update EBS gp3 throughput maximum from 1000 to 2000 MiB/s
2 parents 7f7a750 + 84f481e commit e9eb536

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.changelog/44514.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_ebs_volume: Update `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
3+
```

internal/service/ec2/ebs_volume.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func resourceEBSVolume() *schema.Resource {
114114
Type: schema.TypeInt,
115115
Optional: true,
116116
Computed: true,
117-
ValidateFunc: validation.IntBetween(125, 1000),
117+
ValidateFunc: validation.IntBetween(125, 2000),
118118
},
119119
names.AttrType: {
120120
Type: schema.TypeString,

0 commit comments

Comments
 (0)