-
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
provider/aws: Ability to reduce nodes in an ElastiCache cluster #3809
provider/aws: Ability to reduce nodes in an ElastiCache cluster #3809
Conversation
282840a
to
73480cd
Compare
@@ -173,13 +208,11 @@ resource "aws_security_group" "bar" { | |||
cidr_blocks = ["0.0.0.0/0"] | |||
} | |||
} | |||
|
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.
There's a decent amount of whitespace noise here, could you revisit that?
Hi @stack72, other than the minor whitespace issue this looks good to me. While fixing that, if you want to squash the commits that would be good as well :-) |
73480cd
to
849c692
Compare
849c692
to
2882d01
Compare
@jen20 done and done :) |
LGTM! |
…eduction provider/aws: Ability to reduce nodes in an ElastiCache cluster
I think we should drop a note into the docs as well pointing out the strategy used when reducing the number of nodes - I'll land a PR for that now. |
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. |
Fixes #3604
Assuptions:
We always remove the higher numbered nodes from the cache cluster
I.e. If we are changing from a 2 node cluster to a 1 node cluster then we remove node_id 0002
If we are changing from a 5 node cluster to a 3 node cluster then we remove node_ids 0005 and 0004