Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support > 20 parameters in rds cluster parameter groups #1298

Merged

Conversation

samber
Copy link
Contributor

@samber samber commented Aug 1, 2017

* aws_rds_cluster_parameter_group.default: Error modifying DB Cluster Parameter Group: InvalidParameterCombination: Cannot modify more than 20 parameters in a single request
	status code: 400, request id: f82dc777-76b4-11e7-8f35-1df008be969c

@radeksimko radeksimko added the bug Addresses a defect in current functionality. label Aug 2, 2017
Copy link
Contributor

@grubernaut grubernaut left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, only a couple of minor nits.
Thanks for the contribution!

return fmt.Errorf("Error modifying DB Cluster Parameter Group: %s", err)
// We can only modify 20 parameters at a time, so walk them until
// we've got them all.
maxParams := 20
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mind making this a constant at the top level for this resource?

paramsToModify, parameters = parameters[:maxParams], parameters[maxParams:]
}
modifyOpts := rds.ModifyDBClusterParameterGroupInput{
DBClusterParameterGroupName: aws.String(d.Get("name").(string)),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor nit: Can fetch and cast the value of "name" prior to iterating.

@samber
Copy link
Contributor Author

samber commented Aug 3, 2017

@grubernaut fixed ;)

@grubernaut grubernaut merged commit aa0a183 into hashicorp:master Aug 3, 2017
@ghost
Copy link

ghost commented Apr 11, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Apr 11, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Addresses a defect in current functionality.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants