-
Notifications
You must be signed in to change notification settings - Fork 378
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
feat(rds): instance + cluster allowMajorVersionUpgrade #1598
feat(rds): instance + cluster allowMajorVersionUpgrade #1598
Conversation
@@ -424,6 +446,53 @@ func compareTimeRanges(format string, expectedWindow *string, actualWindow *stri | |||
return false, nil | |||
} | |||
|
|||
func compareVPCSecurityGroupIDs(cr *svcapitypes.DBInstance, out *svcsdk.DBInstance) bool { |
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 return value is easy to misunderstand. Maybe change it to isEqualVPCSecurityGroup
.
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.
Nice to hear. I was initially unsure if or how I should use this more commonly used return logic in this existing resource.
Hopefully the newly committed change compromises not to much.
8c6cbb4
to
3131a61
Compare
This comment was marked as outdated.
This comment was marked as outdated.
48f7d8d
to
dd12a90
Compare
Signed-off-by: Charel Baum <[email protected]>
Signed-off-by: Charel Baum <[email protected]>
dd12a90
to
9fc98b3
Compare
Thank you!! |
Description of your changes
to both DBInstance and DBCluster
allowMajorVersionUpgrade
(+ special update handling needed for DBCluster)VPCSecurityGroupIDs
andDBParameterGroupName
/DBClusterParameterGroupName
Fixes #1330
I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested
manual tests (DBInstance; DBCluster with DBInstance)