Redis Labs
Redis Labs is the developer of Open-Source Redis, an in-memory database, and commercial provider of Redis Enterprise, a real-time data platform. It provides an number of services including analytics, metering, fraud detection, and other real-time applications.
In order to integrate Redis Labs with Relyance AI you will need an API Account Key and API User Keys.
In Redis Labs:
- Login to your Redis Labs account.
- Once logged in go here: https://app.redislabs.com/#/access-management/api-keys
- Copy the API Account Key to be used in Relyance.
- In the API user keys section click the circle with the + in it.
- In the API key name column provide a meaningful name and associate the key to a user account (i.e. service account).
- Click Create.
- This will bring up a dialog box with your API User Key, copy this key.


In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings Menu in the bottom left-hand side.
- Select Integrations.
- Click on the Vendor Integration tab.
- Find the Redis Labs integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Account Key and API User Keys into their respective fields.

- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

- Congratulations, you are now connected to Redis Labs.
Manage this integration with Terraform
Connections for this integration can be managed as code with the Relyance Terraform provider. Non-secret fields go in auth.params; secret fields go in auth.secrets_wo, which is write-only — never stored in Terraform state. Rotate secrets by bumping auth.secrets_wo_version.
resource "relyance_integration_connection" "redislabs" {
vendor = "redislabs"
name = "<your connection name>"
auth = {
method = "api-key"
params = {
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
api_key = var.redislabs_api_key
secret_key = var.redislabs_secret_key
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}