/ Docs

Detectify

Last updated October 13, 2025 · View as Markdown

Detectify_logo.svg Detectify is an automated vulnerability scanner that helps businesses stay on top of threats. They work closely with the ethical hacking community to turn the latest security findings into vulnerability tests. In this way, businesses can access exclusive security research and test their web applications for hundreds of vulnerabilities.

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

In Detectify:

  1. Login to your Detectify account.
  2. Go here: https://detectify.com/app/api-keys
  3. Click on Generate key.
  4. In the resulting form, provide a meaningful Name and Description (optional).

Detectify-3.png

  1. This will bring up a second dialog with your API Key. Copy your new key to be used in Relyance.
  2. Click Continue with default permissions.

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

Detectify-1.png

The Authentication step asks for:

  • API Key: required; held as a secret.
  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

Detectify-2.png

  1. Congratulations, you are now connected to Detectify.

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" "detectify" {
  vendor = "detectify"
  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.detectify_api_key
    }
    secrets_wo_version = 1
  }

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