Skip to Content
PlatformQuickstartYour First Sync

Your First Sync

This guide walks you through the complete path from a new CloudQuery Platform account to your first synced data. By the end, you will have cloud resources synced and queryable in the platform.

Prerequisites

  • A CloudQuery Platform account (create one if you don’t have one)
  • An activated platform installation (activate if not done)
  • Credentials for at least one cloud provider (AWS, GCP, or Azure)

Step 1: Set up an integration

An integration connects CloudQuery Platform to a cloud provider. Choose your provider and follow the corresponding guide:

If you want to start with a different provider, see the General Integration Setup Guide for instructions that apply to any supported source.

Step 2: Create a sync

A sync connects your integration to a destination and runs on a schedule.

  1. Navigate to Data PipelinesSyncs and click Create Sync.
  2. Select Use existing integration and choose the integration you created in Step 1.
  3. Select the default ClickHouse destination (included with CloudQuery Platform).
  4. Give the sync a name.
  5. Set a schedule — Daily is a good starting point. You can also choose to run it manually.
  6. Click Schedule and Run to start the sync immediately.

For a more detailed walkthrough of sync options, see Setting up a Sync.

Step 3: Monitor the sync

After starting the sync, you are redirected to the Sync Runs page. Here you can see:

  • The sync status (running, completed, failed)
  • Duration and row counts
  • Error details if the sync fails

The first sync may take several minutes depending on the number of resources in your cloud account.

Step 4: View your data

Once the sync completes, your cloud resources are available in two places:

Asset Inventory

Navigate to Asset Inventory in the sidebar. You should see your cloud resources organized by category (Compute, Storage, Networking, etc.). Use the search bar to find specific resources.

For more details, see Asset Inventory.

SQL Console

Navigate to SQL Console in the sidebar. Try a query against your synced data:

SELECT cloud, account, region, resource_type, count(*) as total FROM cloud_assets GROUP BY cloud, account, region, resource_type ORDER BY total DESC LIMIT 20

This shows a summary of all synced resources by provider, account, region, and type.

For more on writing queries, see SQL Console.

Next steps

Last updated on