From 5cfd3fe94fa85f0136a2cb2ecf9d84d20434491b Mon Sep 17 00:00:00 2001 From: Cameron Bates Date: Tue, 3 Jun 2025 12:31:08 -0400 Subject: [PATCH] Clarify TLS setting and Active-Active TLS between regions --- .../operate/rc/databases/configuration/active-active-redis.md | 2 ++ content/operate/rc/security/database-security/_index.md | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/content/operate/rc/databases/configuration/active-active-redis.md b/content/operate/rc/databases/configuration/active-active-redis.md index 18c1783e20..e649ec5efd 100644 --- a/content/operate/rc/databases/configuration/active-active-redis.md +++ b/content/operate/rc/databases/configuration/active-active-redis.md @@ -17,6 +17,8 @@ Active-Active databases are distributed across multiple regions (geo-distributio Active-Active databases allow read and write operations in each copy. Each copy eventually reflects changes made in other copies ([eventual consistency]({{< relref "/glossary#eventual-consistency" >}})). Conflict-free data types (CRDTs) synchronize read and write operations between copies. CRDTs ensure consistency and resolve conflicts. +Active-Active databases use TLS to synchronize data between regions. You can also use TLS to encrypt client connections. See [Transport Layer Security (TLS)]({{< relref "/operate/rc/security/database-security/tls-ssl.md" >}}) for more information. + When developing for Active-Active databases, you need to consider some important differences. See [Develop applications with Active-Active databases]({{< relref "/operate/rs/databases/active-active/develop/_index.md" >}}) for related information. {{< note >}} diff --git a/content/operate/rc/security/database-security/_index.md b/content/operate/rc/security/database-security/_index.md index 179eaf665b..90a3de3d62 100644 --- a/content/operate/rc/security/database-security/_index.md +++ b/content/operate/rc/security/database-security/_index.md @@ -26,8 +26,8 @@ Redis Cloud supports two types of network security: [IP Restrictions]({{< relref ## Transport Layer Security (TLS) -Redis Cloud supports [Transport Layer Security]({{< relref "/operate/rc/security/database-security/tls-ssl.md" >}}) (TLS) for database connections. TLS, often called "SSL", ensures the privacy of the TCP connection between your application and database. When client -authentication is enabled, TLS also ensures that those clients with an authorized key can connect to your Redis databases. +Redis Cloud supports [Transport Layer Security]({{< relref "/operate/rc/security/database-security/tls-ssl.md" >}}) (TLS) for database access. TLS, often called "SSL", ensures the privacy of the TCP connection between your application and database. When client +authentication is activated, TLS ensures that only clients with an authorized key can access to your Redis databases. We strongly recommend enabling TLS for any application transmitting sensitive data across the wire.