Skip to content

Commit

Permalink
fix: Fix BigQuery dataset descriptions for covid19_tracking and `ml…
Browse files Browse the repository at this point in the history
…_datasets` (#83)

* fix: generate dataset description for C19 Tracking enabled by #61

* fix: remove penguins-specific description for ml_datasets
  • Loading branch information
adlersantos committed Jun 15, 2021
1 parent fb03247 commit b5b7640
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Expand Up @@ -16,8 +16,9 @@


resource "google_bigquery_dataset" "covid19_tracking" {
dataset_id = "covid19_tracking"
project = var.project_id
dataset_id = "covid19_tracking"
project = var.project_id
description = "BigQuery dataset for the COVID-19 Tracking Project"
}

output "bigquery_dataset-covid19_tracking-dataset_id" {
Expand Down
2 changes: 1 addition & 1 deletion datasets/covid19_tracking/dataset.yaml
Expand Up @@ -28,7 +28,7 @@ resources:
# Optional: friendly_name, description, location
- type: bigquery_dataset
dataset_id: covid19_tracking
description: BigQuery dataset to namespace all tables related to COVID-19
description: BigQuery dataset for the COVID-19 Tracking Project

- type: storage_bucket
name: "covid-tracking-project"
Expand Down
2 changes: 1 addition & 1 deletion datasets/ml_datasets/dataset.yaml
Expand Up @@ -54,4 +54,4 @@ resources:
# description (A user-friendly description of the dataset)
# location (The geographic location where the dataset should reside)
dataset_id: ml_datasets
description: "A tabular dataset of penguin measurements alongside species and habitat information. Data were collected and made available by Dr. Kristen Gorman and the Palmer Station, Antarctica LTER, a member of the Long Term Ecological Research Network. It is provided under the Creative Commons Zero v1.0 Universal license. For more details, see: https://github.com/allisonhorst/palmerpenguins"
description: ~

0 comments on commit b5b7640

Please sign in to comment.