# Conveyor

![Conveyor_logo.svg](https://assets.relyanceuat.xyz/images/docs/12547036137101/12546934731533.svg)
Conveyor is an online end-to-end self-serve trust platform that makes it easy for infosec teams to get their customers the answers they need and ultimately helps eliminate incoming security questionnaires for good.

In order to integrate Conveyor with Relyance AI you will need an **API Key**.

#### In Conveyor:

1. Login to your Conveyor account as an *Account Owner*.
2. Click on **Organization Preferences** found in the bottom-left navigation user avatar.
3. In the **Integration Configuration** section, click the **Add Integration** button in the top right.
4. In the resulting dialog box, select **Conveyor API** and click **Next Step**.
5. Provide a meaningful name for your API Key (e.g. Relyance Scan) and click **Save**.
6. Your new **API Key** will be found in the Integration Configuration section. Copy the **API Key** to be used in Relyance.

![Conveyor-3.png](https://assets.relyanceuat.xyz/images/docs/12547036137101/12552780778637.png)

![Conveyor-4.png](https://assets.relyanceuat.xyz/images/docs/12547036137101/12552754862349.png)

#### 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 **Conveyor** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **API Key** into its respective field.

![Conveyor-1.png](https://assets.relyanceuat.xyz/images/docs/12547036137101/12547008865165.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:

![Conveyor-2.png](https://assets.relyanceuat.xyz/images/docs/12547036137101/12546979766669.png)

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

<!-- 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" "conveyor" {
  vendor = "conveyor"
  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.conveyor_api_key
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

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