AWS AmazonElastiCache documentation change
Summary
Added installation instructions for valkey-cli on Amazon Linux 2023 to support TLS connections to Valkey/Redis clusters.
Security assessment
This change provides routine installation instructions for a new operating system version. While it relates to TLS connectivity (a security feature), the change itself is a documentation update for building the client tool and doesn't address any security vulnerability or add new security documentation.
Diff
diff --git a/AmazonElastiCache/latest/dg/connect-tls.md b/AmazonElastiCache/latest/dg/connect-tls.md index 0cc77f6ef..7aefc852f 100644 --- a//AmazonElastiCache/latest/dg/connect-tls.md +++ b//AmazonElastiCache/latest/dg/connect-tls.md @@ -20,0 +21,11 @@ To use valkey-cli to connect to a Valkey or Redis OSS cluster enabled with in-tr +**Amazon Linux 2023** + +If using Amazon Linux 2023, enter this: + + 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/ +