Conveyor
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:
- Login to your Conveyor account as an Account Owner.
- Click on Organization Preferences found in the bottom-left navigation user avatar.
- In the Integration Configuration section, click the Add Integration button in the top right.
- In the resulting dialog box, select Conveyor API and click Next Step.
- Provide a meaningful name for your API Key (e.g. Relyance Scan) and click Save.
- Your new API Key will be found in the Integration Configuration section. 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 Conveyor 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 Conveyor.
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" "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 } }
}