🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@useatlas/bigquery

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@useatlas/bigquery

Atlas BigQuery datasource plugin

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

@useatlas/bigquery

Google BigQuery datasource plugin for Atlas.

Install

bun add @useatlas/bigquery @google-cloud/bigquery

Usage

// atlas.config.ts
import { defineConfig } from "@atlas/api/lib/config";
import { bigqueryPlugin } from "@useatlas/bigquery";

export default defineConfig({
  plugins: [
    bigqueryPlugin({
      projectId: process.env.GCP_PROJECT_ID!,
      dataset: "analytics",
      location: "US",
      keyFilename: process.env.GOOGLE_APPLICATION_CREDENTIALS,
    }),
  ],
});

Configuration

OptionTypeRequiredDefaultDescription
projectIdstringNofrom credentials/ADCGCP project ID
datasetstringNoDefault dataset for unqualified table references
locationstringNoGeographic location for query jobs (e.g. US, EU)
keyFilenamestringNoPath to service account JSON key file
credentialsobjectNoService account credentials object (parsed JSON key)

Authentication

The plugin supports three authentication methods (in priority order):

  • Credentials object — pass the parsed service account JSON key directly
  • Key file — path to a service account JSON key file via keyFilename
  • Application Default Credentials — automatic in GCP environments (GCE, Cloud Run, GKE)

References

  • Plugin SDK docs
  • Authoring guide

Keywords

atlas

FAQs

Package last updated on 15 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts