Skip to content

Commit b0a3432

Browse files
authored
Merge pull request #44604 from the-lay/ebs_gp3_throughput_2000
Update EBS gp3 throughput maximum from 1000 to 2000 MiB/s
2 parents 28b4561 + 8e4be5a commit b0a3432

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.changelog/44604.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
```release-note:enhancement
2+
resource/aws_launch_template: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
3+
```
4+
```release-note:enhancement
5+
resource/aws_imagebuilder_container_recipe: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
6+
```
7+
```release-note:enhancement
8+
resource/aws_imagebuilder_image_recipe: Update EBS `throughput` maximum validation from 1000 to 2000 MiB/s for gp3 volumes
9+
```

internal/service/ec2/ec2_launch_template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func resourceLaunchTemplate() *schema.Resource {
9494
Type: schema.TypeInt,
9595
Computed: true,
9696
Optional: true,
97-
ValidateFunc: validation.IntBetween(125, 1000),
97+
ValidateFunc: validation.IntBetween(125, 2000),
9898
},
9999
"volume_initialization_rate": {
100100
Type: schema.TypeInt,

internal/service/imagebuilder/container_recipe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func resourceContainerRecipe() *schema.Resource {
176176
Type: schema.TypeInt,
177177
Optional: true,
178178
ForceNew: true,
179-
ValidateFunc: validation.IntBetween(125, 1000),
179+
ValidateFunc: validation.IntBetween(125, 2000),
180180
},
181181
names.AttrVolumeSize: {
182182
Type: schema.TypeInt,

internal/service/imagebuilder/image_recipe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func resourceImageRecipe() *schema.Resource {
9898
Type: schema.TypeInt,
9999
Optional: true,
100100
ForceNew: true,
101-
ValidateFunc: validation.IntBetween(125, 1000),
101+
ValidateFunc: validation.IntBetween(125, 2000),
102102
},
103103
names.AttrVolumeSize: {
104104
Type: schema.TypeInt,

0 commit comments

Comments
 (0)