From 86476fe3093c73b2a7fd0977dfea5cec7fdb76e6 Mon Sep 17 00:00:00 2001 From: MarcAmick <5194465+MarcAmick@users.noreply.github.com> Date: Wed, 24 Sep 2025 08:32:20 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=9C=20feat:=20Redis=20Alt.=20DNS=20Loo?= =?UTF-8?q?kup=20for=20Elasticache=20support=20#9263=20(#400)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this is required when connecting to elasticache for ioredis see "Special Note: Aws Elasticache Clusters with TLS" on this webpage: https://www.npmjs.com/package/ioredis Co-authored-by: Marc Amick --- pages/docs/configuration/redis.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/docs/configuration/redis.mdx b/pages/docs/configuration/redis.mdx index cabd9d7..da04c4e 100644 --- a/pages/docs/configuration/redis.mdx +++ b/pages/docs/configuration/redis.mdx @@ -104,6 +104,14 @@ REDIS_URI=rediss://your-redis-host:6380 # Provide CA certificate for verification REDIS_CA=/path/to/your/ca-certificate.pem ``` +### TLS with Elasticache + +Elasticache may need to use an alternate dnsLookup for TLS connections. see "Special Note: Aws Elasticache Clusters with TLS" on this webpage: https://www.npmjs.com/package/ioredis + +```bash +# Enable redis alternate dnsLookup +REDIS_USE_ALTERNATIVE_DNS_LOOKUP=true +``` ## Advanced Options