Redis password for AWS ElastiCache

12,494

By default, there is no password for elasticache. Unless you enable it from within the "encryption in transit", it is not available as an option.

Try to remove 'auth' and see if this works.

Share:
12,494
jdog
Author by

jdog

Updated on July 19, 2022

Comments

  • jdog
    jdog almost 2 years

    I am using KUE, on EC2, and setting up an external ElastiCache Redis storage. It appears ElastiCache does not use password (auth), but instead relies on Security Groups. So do I need to leave the redis password (???) param empty?

    redis: {
      port: 6379 //process.env.REDIS_PORT,
      host: blah.44444z.0001.usw1.cache.amazonaws.com //process.env.REDIS_HOST,
      auth: ??? //process.env.REDIS_PASS,
      options: {
      }
    }