LogoLogo
Metadata for Integration Config
Metadata for Integration Config
  • INTEGRATION METADATA
    • Amazon Account
    • AWS EC2 SSH
    • Elastic Kubernetes Service (EKS)
    • AWS Lambda Custom Integration
    • Amazon Organization
    • AWS RDS MySQL
    • AWS RDS PostgreSQL
    • Amazon RDS
    • Entra ID (Azure AD) Groups
    • Azure Kubernetes Service (AKS)
    • Azure Management Group
    • Azure MySQL
    • Azure PostgreSQL
    • Azure Subscription
    • Azure VM SSH
    • Cloud Function Custom Integration
    • F5 Network
    • Google AlloyDB
    • Google BigQuery
    • Google Cloud SQL - MySQL
    • Google Cloud SQL - PostgreSQL
    • Google Kubernetes Engine (GKE)
    • Google Organization
    • Google Project
    • Github
    • JumpCloud
    • Kubernetes Proxy
    • Kubernetes
    • LDAP Group
    • MariaDB
    • Mongo Atlas Portal
    • MongoDB Atlas
    • MongoDB
    • Microsoft SQL Server
    • MySQL
    • Okta Group
    • OneLogin Group
    • 1Password
    • OpenVPN
    • Oracle Database
    • PostgreSQL
    • RabbitMQ
    • Rancher
    • RDP
    • Redis Cloud (Redislabs)
    • Amazon Redshift
    • Snowflake
    • SSH
    • Vertica Database
    • Web App
    • Windows Domain Controller
Powered by GitBook
On this page
  • Example Usage
  • Schema
  • Integration Config

Was this helpful?

Export as PDF
  1. INTEGRATION METADATA

Google BigQuery

Google Cloud BigQuery

Example Usage


gcp-bigquery-integration.tf
resource "apono_integration" "gcp-bigquery-integration" {
  name                     = "Google BigQuery"
  type                     = "gcp-bigquery"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-bigquery-table"]
  metadata = {
    project_id = "<Project ID>"
    dataset_id = "<Dataset Name>"
  }
}
gcp-bigquery-integration.tf
resource "apono_resource_integration" "gcp-bigquery-integration" {
  name                     = "Google BigQuery"
  type                     = "gcp-bigquery"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["gcp-bigquery-table"]
  integration_config = {
    project_id = "<Project ID>"
    dataset_id = "<Dataset Name>"
  }
}

Schema


  • type gcp-bigquery

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • gcp-bigquery-table

Integration Config


  • project_id (Required | String) Project ID

  • dataset_id (Required | String) Dataset Name

PreviousGoogle AlloyDBNextGoogle Cloud SQL - MySQL

Last updated 2 hours ago

Was this helpful?