# Concord

![Concord_logo.svg](https://assets.relyanceuat.xyz/images/docs/10147838014093/10147804620429.svg)
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:

![Concord-3.png](https://assets.relyanceuat.xyz/images/docs/10147838014093/10276957014797.png)
1. Login to your Concord account.
2. Click on **Integrations** in the left-hand navigation menu.
3. Expand the section for **Concord API**.
4. Click the **Generate a new API Key** button.
5. Copy the **API Key** to be used in Relyance.

#### In the Relyance AI application:

1. Login to your Relyance account.
2. Navigate to the **Settings** Menu in the bottom left-hand side.
3. Select **Integrations**.
4. Click on the **Vendor Integration** tab.
5. Find the **Concord** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **API Key** into its respective field.

![Concord-1.png](https://assets.relyanceuat.xyz/images/docs/10147838014093/10276682876557.png)

The **Authentication** step asks for:

- **API Key**: required; held as a secret.

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

![Corcord-2.png](https://assets.relyanceuat.xyz/images/docs/10147838014093/10276668289165.png)

11. Congratulations, you are now connected to **Concord**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). 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`.

```hcl
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 } }
}
```

<!-- terraform-examples:end -->
