Datafold
Datafold is a data quality platform that helps teams automatically detect, prevent, and understand data issues in their pipelines. It provides tools for data diffing, monitoring, and profiling to ensure data accuracy and consistency, improving the reliability of analytics and machine learning workflows.
In order to integrate Datafold with Relyance AI you will need an API Key.
In Datafold:
- Login to your Datafold account.
- Go to Settings> Account and select Create API Key.
In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings Menu in the bottom left-hand side.
- Select Integrations.
- Find the Datafold integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key into its respective field.

- Additional Features:
- Use the Vendor Discovery checkbox if you wish to run this integration with Vendor Discovery Enabled.
- Select the Enable Data Inspection checkbox if you wish Relyance also to inspect the data. For more information on Relyance features, please refer to this help center article: here.
The Authentication step asks for:
- API key: required; held as a secret.
- Datafold Host: required.
- Click Authenticate.
- At this point, you should see the following result on the integrations page:

- Congratulations, you are now connected to Datafold.
If the connection reports Connected but returns nothing
These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.
- A credential rotated at the vendor is not picked up here. API key is stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
- Check the address fields before suspecting the credentials. Datafold Host identifies which tenant, region or host to talk to. A wrong value there fails authentication and looks exactly like a bad secret.
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" "datafold" {
vendor = "datafold"
name = "<your connection name>"
auth = {
method = "api-key"
params = {
host = "https://app.datafold.com"
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
api_key = var.datafold_api_key
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}