Concord
Concord is Contract Lifecycle Management (CLM) system that helps organizations collaborate on, manage, e-sign, and store agreements. It helps companies manage the entire lifecycle of their contracts from creation to post-execution.
In order to integrate Concord with Relyance AI you will need an API Key.
In Concord:

- Login to your Concord account.
- Click on Integrations in the left-hand navigation menu.
- Expand the section for Concord API.
- Click the Generate a new API Key button.
- Copy the API Key to be used in Relyance.
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 Concord integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key into its respective field.

The Authentication step asks for:
- API Key: required; held as a secret.
- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

- Congratulations, you are now connected to Concord.
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" "concordnow" {
vendor = "concordnow"
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.concordnow_api_key
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}