Kentik
Kentik is an open, scalable Network Traffic Intelligence platform for collecting, analyzing, and visualizing data about the health and performance of your organization's networks. It helps unify network operations, performance, security, and business intelligence.
In order to integrate Kentik with Relyance AI you will need an API Key and Email address.
In Kentik:

- Login to your Kentik account.
- The Email address you used to login will be used in Relyance.
- Click on your user menu at the top-right hand corner.
- Select Profile.
- Select the Authentication tab.
- Copy your API token to be used as your API Key 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 Kentik integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key and Email into their respective fields.

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

- Congratulations, you are now connected to Kentik.
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" "kentik" {
vendor = "kentik"
name = "<your connection name>"
auth = {
method = "api-key"
params = {
email = "<email>"
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
api_key = var.kentik_api_key
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}