Google BigQuery

Google Cloud BigQuery

Example Terraform Resource Usage


resource "apono_integration" "gcp-bigquery-integration" {
  name                     = "Google BigQuery"
  type                     = "gcp-bigquery"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  metadata = {
    project_id = "<Project ID>"
    dataset_id = "<Dataset Name>"
  }
}

Schema


  • type gcp-bigquery

  • connected_resource_types List of resource types to sync. The following are the available resource type/s you can use:

    • gcp-bigquery

    • gcp-bigquery-table

Metadata

  • project_id (Required | String) Project ID

  • dataset_id (Required | String) Dataset Name

Last updated