Recombee
Recombee is web-based recommender system / software as a service (SaaS) providing content and product personalization. Recombee provides AI-powered personalized real-time content to increase clients' revenues, user satisfaction, and helps businesses grow.
In order to integrate Recombee with Relyance AI you will need a Recombee API Identifier and Private Key.
In Recombee:

Login to your Recombee admin portal.
Select Database that you want to use.
Navigate to the settings for that database.
Copy the API Identifier and Private Token (Private Key) to be used in Relyance AI.
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 Recombee integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Identifier and Private Key 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 Recombee.
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" "recombee" {
vendor = "recombee"
name = "<your connection name>"
auth = {
method = "key-pair"
params = {
api_dentifier = "<api_dentifier>"
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
private_key = var.recombee_private_key
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}