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.
module "my-dataset" {
source = "github.com/colpal/terraform-module-google-bigquery-dataset?ref=v1"
dataset_id = "my-dataset"
}
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)
}