Skip to content

ivankorn/terraform-google-bigquery

 
 

Repository files navigation

terraform-google-bigquery

This module allows you to create opinionated Google Cloud Platform BigQuery datasets and tables. This will allow the user to programmatically create an empty table schema inside of a dataset, ready for loading. Additional user accounts and permissions are necessary to begin querying the newly created table(s).

Upgrading

The current version is 1.X. The following guide is available to assist with upgrades:

Usage

Examples of how to use this module are located in the examples directory

Features

This module provisions a dataset and a table with an associated JSON schema.

Inputs

Name Description Type Required Default
dataset_id Unique id for the dataset being provisioned string yes
dataset_name Friendly name for the dataset being provisioned string yes
description Dataset description string yes
location The regional location for the dataset, all Big Query dataset locations are allows string yes US
expiration TTL of tables using the dataset in MS integer yes
project_id Project where the dataset and table are created string yes
tables A list of maps containing table_id and schema files array yes
table_id A attribute in the map of the tables list, that contains a unique id for the table being provisioned string yes
time_partitioning Unique id for the table being provisioned string yes
schema A attribute in the map of the tables list, that contains JSON schema files for the table string yes

Outputs

Name Description
dataset_id Unique id for the dataset being provisioned
dataset_name Friendly name for the dataset being provisioned
dataset_project Project wheree the dataset and table are created
table_id List of unique id for the table(s) being provisioned
table_name List friendly name(s) for the dataset being provisioned
dataset_labels Key value pairs in a map for dataset labels
table_labels Key value pairs in a map for table labels

Requirements

Terraform plugins

Permissions

In order to execute this module you must have a Service Account with the following roles:

  • roles/bigquery.dataOwner

Script Helper

A helper script for configuring a Service Account is located at (./helpers/setup-sa.sh).

Install

Terraform

Be sure you have the current Terraform version (0.11.x), you can choose the binary from Terraform releases.

kitchen-terraform

To set this up on your machine, follow the official Kitchen installation instructions.

Running tests

cd /path/to/terraform-google-bigquery The following command will run all tests for the module: make

macOS mojave notes

To run kitchen tests on macOS > 10.14.4 xcode will need to be reset xcode-select --install

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 41.4%
  • Ruby 25.1%
  • Shell 15.7%
  • HCL 12.0%
  • Makefile 5.8%