-
-
Notifications
You must be signed in to change notification settings - Fork 29
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: Support Valkey #26
feat: Support Valkey #26
Conversation
@magreenbaum I'm unable to deploy valkey using your changes. Using the following code, I get a validation error:
Error:
|
There is a bug in the provider currently for creating valkey clusters: hashicorp/terraform-provider-aws#39905 |
we should wait for the upstream provider bug to be resolved first, no? |
@bryantbiggs we can, but I figured this way those that want to use valkey for replication groups and serverless can do so in the mean time since the bug only affects |
Awesome. Please lets merge this regardless of the provider bug. |
I've pinged a few folks - I don't want to add support for something that is known to not work |
FYI - hashicorp/terraform-provider-aws#39972 (comment) So we shouldn't add support for it here for cache clusters (serverless and replication groups do support it and we can support that as well) |
Added a conditional to not create clusters if engine is |
Hi All, any update on Valkey support? |
I will take a look today - it's re:Invent season plus the holiday season so be patient 😅 |
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.
thank you @magreenbaum, another phenomenal contribution 🎉
## [1.4.0](v1.3.0...v1.4.0) (2024-11-29) ### Features * Support Valkey ([#26](#26)) ([6b1b5aa](6b1b5aa))
This PR is included in version 1.4.0 🎉 |
This line seems to prevent valkey creation still
when I put valkey in for the engine with the latest module, I get a delete of my cluster. Should this above line vanish now? @magreenbaum |
Valkey is not supported on clusters, only replication groups |
I'm going to lock this pull request 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 related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
Support Valkey.
As a note, there is a bug in the provider where
aws_elasticache_cluster
doesn't support Valkey.Motivation and Context
Closes: #25
hashicorp/terraform-provider-aws#39972
Breaking Changes
No.
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request