Skip to content

Commit

Permalink
Merge pull request #37251 from diegofd/fix-DescribeOrderableDBInstanc…
Browse files Browse the repository at this point in the history
…eOptionsInput-MaxRecords

fix(rds): DescribeOrderableDBInstanceOptionsInput MaxRecords to 1000
  • Loading branch information
ewbankkit committed May 3, 2024
2 parents aaedd7d + 892a260 commit c6d09d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/37251.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
data-source/aws_rds_orderable_db_instance: Fix `InvalidParameterValue: Invalid value 3412 for MaxRecords. Must be between 20 and 1000` errors
```
2 changes: 1 addition & 1 deletion internal/service/rds/orderable_instance_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func dataSourceOrderableInstanceRead(ctx context.Context, d *schema.ResourceData
conn := meta.(*conns.AWSClient).RDSConn(ctx)

input := &rds.DescribeOrderableDBInstanceOptionsInput{
MaxRecords: aws.Int64(3412),
MaxRecords: aws.Int64(1000),
}

if v, ok := d.GetOk("availability_zone_group"); ok {
Expand Down

0 comments on commit c6d09d6

Please sign in to comment.