GitXplorerGitXplorer
j

terraform-google-bigquery-view

public
3 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
eb8b7cef5cb55d255deb0506bd16de1c36c4a011

remove section from readme that gets updated automatically in the terraform registry

jjanjagusch committed 5 years ago
Verified
7c6afe3bd45d2ea911d5a0dc0926a4490ae55cb7

Add templating for query (#3)

jjanjagusch committed 5 years ago
Unverified
f1576ba6c42505907f620d20a229da49c58db756

fix ci

jjanjagusch committed 5 years ago
Verified
1be935692423742a16e6fc4f9f8fe3e08f809526

Remove config file default (#2)

jjanjagusch committed 5 years ago
Unverified
3f5ec4bc62e2c685f5318f2092c4d1676a52247c

update module name

jjanjagusch committed 5 years ago
Unverified
880297cd91510835fd54b2f8ca717b1fd99359b8

add changelog

jjanjagusch committed 5 years ago

README

The README file for this repository.

terraform-google-bigquery-view

A Terraform module for creating BigQuery views.

Usage

View Config

Views are defined in config.yaml files:

dataset_id: my_dataset
table_id: my_view
query: SELECT * FROM my_table;
description: My example view

Instead of writing the query directly, you can also reference to a query_file:

dataset_id: my_dataset
table_id: my_view
query_file: ./query.sql
description: My example view

Where the query_file path is relative to the location of config.yaml. The query file can also contain placeholder variables that can be templated.

You can find an example in the example_view folder.

Authors