Documentation
Core Concepts
Integrations

Integrations

CloudQuery has a integration-based architecture, with integrations communicating over gRPC (opens in a new tab). An integration can be implemented to be a source, destination or both.

All integrations are split to official (maintained by CloudQuery) and community (maintained by members of the community in their own repositories).

Source Integration

The core responsibilities of a source integration:

  • Define the schema (tables).
  • Authenticate with the supported APIs, SaaS services and/or cloud providers.
  • Extracting data from the supported APIs and transform them into the defined schema.
  • Send the data via protobuf (opens in a new tab) to the CLI for further processing and storage at the defined destination integrations.

See Configuration Reference

Destination Integration

The core responsibilities of a destination integration:

  • Authenticate with the destination (such as database, message queue, storage).
  • Auto-migrate the schemas defined by the source integrations.
  • Save each incoming object in the appropriate table.

See Configuration Reference