-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
add resource aws_rds_cluster_parameter_group #5269
add resource aws_rds_cluster_parameter_group #5269
Conversation
+1. |
It's possible that the |
d.SetPartial("name") | ||
d.SetPartial("family") | ||
d.SetPartial("description") | ||
d.Partial(false) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Partial mode handling is only relevant when multiple API calls are required to accomplish an overall change. So in this case these lines are a noop and can be removed. 👍
Wow @protomouse this is looking really, really good! A few inline comments for you to check out, but really great work here so far! 😀 |
@phinze Sorry for the hold up. Thanks for reviewing this. I've fixed these things in separate commits. If it looks good, I'll rebase. |
Hi @protomouse I am trying to do a round up of some PRs and came across this one. Ran the tests (after noticing you made the changes that @phinze suggested) but got this:
This test failure is because of this line:
This should be something like:
If you can fix this up, we are home free for the merge :) Paul |
Manually merged to get the |
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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This PR adds support for RDS Cluster Parameter Groups (see #5031, #5023). It's more or less a carbon copy of
aws_db_parameter_group
.I have a small question regarding error handling.
aws_db_parameter_group
compares againstDBParameterGroupNotFoundFault
, notDBParameterGroupNotFound
, which is the error code I've been observing in docs and during tests. Is that correct? I'm usingDBParameterGroupNotFound
for now.