Table: vanta_integration - Query Vanta Integrations using SQL
Vanta is a security and compliance automation platform. It simplifies the complex process of preparing for SOC 2, ISO 27001, and other security audits. Vanta Integrations are the various systems, applications, and services that Vanta connects to, in order to collect and analyze security-related data.
Table Usage Guide
The vanta_integration
table provides insights into the various integrations within the Vanta security system. As a security analyst, explore integration-specific details through this table, including status, type, and associated metadata. Utilize it to uncover information about integrations, such as their current status, the type of integration, and other critical data.
Important Notes
- There are various integrations available that can be integrated. The table
vanta_integration
only returns the integrations that are connected. - To query the table you must set
session_id
argument in the config file (~/.steampipe/config/vanta.spc
).
Examples
Basic info
Explore the specific details of your integrated applications, such as their names, unique identifiers, and associated logos. This can assist in managing and tracking your integrations more effectively.
select display_name, id, description, logo_slug_idfrom vanta_integration;
select display_name, id, description, logo_slug_idfrom vanta_integration;
List integrations having disabled credentials
Identify instances where certain integrations have been disabled. This is useful in maintaining system security and functionality by quickly pinpointing any inactive credentials.
select display_name, id, (c ->> 'metadata') :: jsonb as credential_metadata, c ->> 'service'from vanta_integration, jsonb_array_elements(credentials) as cwhere c ->> 'isDisabled' = 'true';
select display_name, id, json_extract(c.value, '$.metadata') as credential_metadata, json_extract(c.value, '$.service')from vanta_integration, json_each(credentials) as cwhere json_extract(c.value, '$.isDisabled') = 'true';
List integrations with failed tests
Assess the elements within your system integrations to identify instances where tests have failed. This can be beneficial in pinpointing specific areas of concern and taking corrective actions to improve system performance.
select i.display_name, i.id, t ->> 'testId' as test_id, m.outcome as test_statusfrom vanta_integration as i, jsonb_array_elements(tests) as t join vanta_monitor as m on m.test_id = t ->> 'testId' and outcome = 'FAIL';
select i.display_name, i.id, json_extract(t.value, '$.testId') as test_id, m.outcome as test_statusfrom vanta_integration as i, json_each(tests) as t join vanta_monitor as m on m.test_id = json_extract(t.value, '$.testId') and outcome = 'FAIL';
Schema for vanta_integration
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
application_url | text | The URL of the application. | |
credentials | jsonb | The credential metadata of the integration. | |
description | text | A human-readable description of the integration. | |
display_name | text | The display name of the integration. | |
id | text | A unique identifier of the integration. | |
installation_url | text | The installation URl of the integration. | |
integration_categories | jsonb | A list of integration categories. | |
logo_slug_id | text | The slug of the logo used for the integration. | |
organization_name | text | The name of the organization. | |
scopable_reource | jsonb | A list of scopable resources. | |
service_categories | jsonb | A list of service categories. | |
tests | jsonb | A list of tests defined for monitoring the integrations. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- vanta
You can pass the configuration to the command with the --config
argument:
steampipe_export_vanta --config '<your_config>' vanta_integration