Skip to content

Commit

Permalink
Refactor: Combine New York pipelines into one (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlarge-google committed Apr 8, 2022
1 parent 214a56f commit 4ba9080
Show file tree
Hide file tree
Showing 25 changed files with 2,991 additions and 1,705 deletions.
39 changes: 0 additions & 39 deletions datasets/new_york/infra/311_service_requests_pipeline.tf

This file was deleted.

39 changes: 0 additions & 39 deletions datasets/new_york/infra/citibike_stations_pipeline.tf

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,20 @@
*/


resource "google_bigquery_table" "new_york_tree_census_1995" {
project = var.project_id
dataset_id = "new_york"
table_id = "tree_census_1995"






resource "google_bigquery_table" "new_york_new_york" {
project = var.project_id
dataset_id = "new_york"
table_id = "new_york"
description = "New York Pipelines"
depends_on = [
google_bigquery_dataset.new_york
]
}

output "bigquery_table-new_york_tree_census_1995-table_id" {
value = google_bigquery_table.new_york_tree_census_1995.table_id
output "bigquery_table-new_york_new_york-table_id" {
value = google_bigquery_table.new_york_new_york.table_id
}

output "bigquery_table-new_york_tree_census_1995-id" {
value = google_bigquery_table.new_york_tree_census_1995.id
output "bigquery_table-new_york_new_york-id" {
value = google_bigquery_table.new_york_new_york.id
}

0 comments on commit 4ba9080

Please sign in to comment.