CRDB cluster info object

An object that represents Active-Active cluster info

Redis Software

Configuration details for a cluster that is part of an Active-Active database.

Name Type/Value Description
certificate_auth

{
  "client_cert": string,
  "client_key": string,
  "trusted_ca": string
} 
Certificate credentials for cluster access, as PEM strings. Required unless you use credentials; a request that includes both for the same cluster fails.
client_cert: Client certificate (required)
client_key: Client certificate's private key (required)
trusted_ca: CA that validates the API certificate the peer cluster presents. If omitted, the cluster uses the certificates in its mtls_trusted_ca.pem file.

See Certificate-based authentication for cluster management.
credentials

{
  "username": string,
  "password": string
} 
Cluster access credentials. Required unless you use certificate_auth; a request that includes both for the same cluster fails.
name string Cluster fully qualified name, used to uniquely identify the cluster. Typically this is the same as the hostname used in the URL, although in some configurations the URL may point to a different name/address. (required)
replication_endpoint string Address to use for peer replication. If not specified, it is assumed that standard cluster naming conventions apply.
replication_tls_sni string Cluster SNI for TLS connections
url string Cluster access URL (required)
RATE THIS PAGE
Back to top ↑