AWS Security ChangesHomeSearch

AWS AmazonElastiCache documentation change

Service: AmazonElastiCache · 2026-04-25 · Documentation low

File: AmazonElastiCache/latest/dg/set-up.md

Summary

Added installation instructions for valkey-cli on Amazon Linux 2023 and updated existing commands to build and install valkey-cli with TLS support

Security assessment

The changes are routine documentation updates adding installation instructions for a new operating system version and clarifying build commands. While the commands include BUILD_TLS=yes flag for TLS support, this is not new security documentation but rather standard installation steps. No evidence of addressing a specific security vulnerability or incident.

Diff

diff --git a/AmazonElastiCache/latest/dg/set-up.md b/AmazonElastiCache/latest/dg/set-up.md
index 28643e2fe..6e77457d2 100644
--- a//AmazonElastiCache/latest/dg/set-up.md
+++ b//AmazonElastiCache/latest/dg/set-up.md
@@ -249,0 +250,10 @@ If you use ElastiCache for Valkey, then you might find the valkey-cli utility us
+**Amazon Linux 2023**
+    
+        sudo dnf install gcc jemalloc-devel openssl-devel tcl tcl-devel -y
+    wget -O valkey-8.0.0.tar.gz https://github.com/valkey-io/valkey/archive/refs/tags/8.0.0.tar.gz
+    tar xvzf valkey-8.0.0.tar.gz
+    cd valkey-8.0.0
+    make valkey-cli BUILD_TLS=yes
+    sudo install -m 755 src/valkey-cli /usr/local/bin/
+    
+
@@ -257 +267,2 @@ If you use ElastiCache for Valkey, then you might find the valkey-cli utility us
-    make BUILD_TLS=yes
+    make valkey-cli BUILD_TLS=yes
+    sudo install -m 755 src/valkey-cli /usr/local/bin/