Skip to content

colpal/terraform-module-google-bigquery-dataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Terraform Module: Google BigQuery Dataset

A simplified wrapper around the google_bigquery_dataset module

Note: This module is a work in progress! If there are any attributes missing that you would like to see supported, please open an issue.

Example

module "my-dataset" {
  source     = "github.com/colpal/terraform-module-google-bigquery-dataset?ref=v1"
  dataset_id = "my-dataset"
}

Module

module "_" {
  # COPY
  source = "github.com/colpal/terraform-module-google-bigquery-dataset?ref=v1"

  # REQUIRED
  # The name/id of the dataset to be created
  dataset_id = string

  # OPTIONAL
  # DEFAULT = null
  # A plaintext description to be added to the dataset
  description = string

  # OPTIONAL
  # DEFAULT = null
  # Key/value pairs that will be applied to the dataset as labels
  labels = map(string)
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages