Secure Redis connections in Drupal using password authentication When using AWS ElastiCache for Redis as a caching backend for your Drupal site, it’s important to protect access to the Redis service—not just with network-level security, but also at the application level using AUTH. This guide focuses on using a single AUTH token with Drupal’s Redis module and the PHPRedis extension, which is the most compatible approach. Using Redis AUTH Token (Single Password) AWS ElastiCache Redis supports AUTH token authentication, allowing clients to authenticate with a single password. This is the recommended method for use with PHPRedis, which does not support named user authentication. ✅ How to Enable AUTH Token in AWS In the AWS ElastiCache Console, go to your Redis cluster. Choose Modify. Under Access Control, select Redis AUTH. Enter a secure password (minimum 16 characters). Save changes and wait for the cluster to update. You can enable or modify