Skip to content

Commit

Permalink
Merge pull request #38109 from jnsaff/patch-1
Browse files Browse the repository at this point in the history
Bug fix: fixes throughput type for managed ebs volume
  • Loading branch information
ewbankkit authored Jul 15, 2024
2 parents f98aa9b + a185ad8 commit 1f30c6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/38109.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_ecs_service: Change `volume_configuration.managed_ebs_volume.throughput` from `TypeString` to `TypeInt`
```
2 changes: 1 addition & 1 deletion internal/service/ecs/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ func ResourceService() *schema.Resource {
Optional: true,
},
names.AttrThroughput: {
Type: schema.TypeString,
Type: schema.TypeInt,
Optional: true,
ValidateFunc: validation.IntBetween(0, 1000),
},
Expand Down

0 comments on commit 1f30c6e

Please sign in to comment.