-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
vector search enabled MemoryDB cluster via terraform module #7
Comments
I have the same problem, can anyone help us, please? |
I don't think you are following the docs correctly, I think you need to do: module "memory_db" {
source = "terraform-aws-modules/memory-db/aws"
engine_version = "7.1"
node_type = "db.r7g.2xlarge"
num_shards = 1
# Parameter group
create_parameter_group = false
parameter_group_name = "default.memorydb-redis7.search.preview"
...
} |
I'm getting this error from terraform apply : InvalidParameterValueException: Parameter Group ID specified is not a valid identifier. Identifiers must begin with a letter; must contain only ASCII letters, digits, dots and hyphens; and must not end with a dot or hyphen or contain two consecutive dots or hyphens. my code:
|
oh, there was an extra whitespace character in the snippet I provided - corrected |
also, you shouldn't need |
Thank you so much this approach works |
awesome! closing this out then, thanks all! |
via aws-cli we can create the cluster with vector search enabeld by passing the parameter group
default.memorydb-redis7.search.preview
, as stated in:However, when I do that via terraform:
it's not enabled.
I've confirmed it:
The text was updated successfully, but these errors were encountered: