Skip to content

Commit

Permalink
AWS supports higher throughput ranges for select customers
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-dyer-sp committed Nov 2, 2022
1 parent 8c3d9dc commit 4169945
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .changelog/27598.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```release-note:bug
resource/aws_elasticsearch: Remove validation for EBS storage throughput as AWS has backend limits they can raise for select customers
```

7 changes: 3 additions & 4 deletions internal/service/elasticsearch/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,10 +386,9 @@ func ResourceDomain() *schema.Resource {
Optional: true,
},
"throughput": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(125, 1000),
Type: schema.TypeInt,
Optional: true,
Computed: true,
},
"volume_size": {
Type: schema.TypeInt,
Expand Down

0 comments on commit 4169945

Please sign in to comment.