Error connecting to Redis Managed Private Instance on AWS

Hello,
Getting this error. I followed my connection string based on terraform example,
Using a. private managed Redis instance on AWS, terraform code snippet below.

Redis::CommandError: WRONGPASS invalid username-password pair or user is disabled.

"redis://${local.qovery_redis.redis_database_login.value}:${local.qovery_redis.redis_database_password.value}@${local.qovery_redis.redis_database_internal_host.value}:${local.qovery_redis.redis_database_port.value}"

Hello,
You can’t connect to database because you’re using a password on a managed database without authentication. We release a patch few days ago which solve the issue so you have two solutions:

  • Connect to the actual db without password
  • Create a brand new db in order to replace the actual one which will used auth.

I will try to connect without a password. will keep you posted if it works.

This worked. thanks @Enzo