Skip to content

Commit

Permalink
Merge branch 'main' into idc-v7
Browse files Browse the repository at this point in the history
  • Loading branch information
adlersantos committed Feb 11, 2022
2 parents b5ef6d8 + 7408d44 commit 2d81124
Show file tree
Hide file tree
Showing 945 changed files with 2,969 additions and 1,856 deletions.
24 changes: 14 additions & 10 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
## Description

Based on #<ISSUE-NUMBER>

Note: It's recommended to open an issue first for context and discussion.
Note: If you are adding or editing a dataset, please specify the dataset folder involved, e.g. `datasets/google_trends`

## Checklist

Note: Delete items below that aren't applicable to your pull request.
Note: If an item applies to you, all of its sub-items must be fulfilled

- [ ] Please merge this PR for me once it is approved.
- [ ] If this PR adds or edits a feature, I have updated the [`README`](https://github.com/GoogleCloudPlatform/public-datasets-pipelines/blob/main/README.md) accordingly.
- [ ] If this PR adds or edits a dataset or pipeline, it was reviewed and approved by the Google Cloud Public Datasets team beforehand.
- [ ] If this PR adds or edits a dataset or pipeline, I put all my code inside `datasets/<YOUR-DATASET>` and nothing outside of that directory.
- [ ] If this PR adds or edits a dataset or pipeline that I'm responsible for maintaining, my GitHub username is in the [`CONTRIBUTORS` file](https://github.com/GoogleCloudPlatform/public-datasets-pipelines/blob/main/CONTRIBUTORS).
- [ ] This PR is appropriately labeled.
- [ ] **(Required)** This pull request is appropriately labeled
- [ ] Please merge this pull request after it's approved
- [ ] I'm adding or editing a feature
- [ ] I have updated the [`README`](https://github.com/GoogleCloudPlatform/public-datasets-pipelines/blob/main/README.md) accordingly
- [ ] I have added tests for the feature
- [ ] I'm adding or editing a dataset
- [ ] The [Google Cloud Datasets team](mailto:[email protected]) is aware of the proposed dataset
- [ ] I put all my code inside `datasets/<DATASET_NAME>` and nothing outside of that directory
- [ ] I'm adding/editing documentation
- [ ] I'm submitting a bugfix
- [ ] I have added tests to my bugfix (see the [`tests`](https://github.com/GoogleCloudPlatform/public-datasets-pipelines/tree/main/tests) folder)
- [ ] I'm refactoring or cleaning up some code
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ tmp

# ignore temp folders
.tmp

.DS_Store
151 changes: 82 additions & 69 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ steps:
--location us-central1 --format='value(config.dagGcsPrefix)' | sed -e 's/gs:\/\/*//' -e 's/\/dags*//' > .generated/composer_bucket.txt
- id: 'Validate Terraform'
name: 'hashicorp/terraform:1.0.9'
name: 'hashicorp/terraform:1.0.10'
entrypoint: 'sh'
env:
- 'TF_IN_AUTOMATION=1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,3 @@ resource "google_bigquery_dataset" "america_health_rankings" {
output "bigquery_dataset-america_health_rankings-dataset_id" {
value = google_bigquery_dataset.america_health_rankings.dataset_id
}

resource "google_storage_bucket" "america-health-rankings" {
name = "${var.bucket_name_prefix}-america-health-rankings"
force_destroy = true
location = "US"
uniform_bucket_level_access = true
}

output "storage_bucket-america-health-rankings-name" {
value = google_storage_bucket.america-health-rankings.name
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# limitations under the License.

dataset:
name: cms_medicare
friendly_name: cms_medicare
description: CMS Medicare
name: america_health_rankings
friendly_name: America Health Rankings
description: America Health Rankings
dataset_sources: ~
terms_of_use: ~

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "cbsa_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_cbsa_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "cbsa_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "cbsa_2019_1yr" {
]
}

output "bigquery_table-cbsa_2019_1yr-table_id" {
value = google_bigquery_table.cbsa_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_cbsa_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_cbsa_2019_1yr.table_id
}

output "bigquery_table-cbsa_2019_1yr-id" {
value = google_bigquery_table.cbsa_2019_1yr.id
output "bigquery_table-census_bureau_acs_cbsa_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_cbsa_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "cbsa_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_cbsa_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "cbsa_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "cbsa_2019_5yr" {
]
}

output "bigquery_table-cbsa_2019_5yr-table_id" {
value = google_bigquery_table.cbsa_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_cbsa_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_cbsa_2019_5yr.table_id
}

output "bigquery_table-cbsa_2019_5yr-id" {
value = google_bigquery_table.cbsa_2019_5yr.id
output "bigquery_table-census_bureau_acs_cbsa_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_cbsa_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ resource "google_storage_bucket" "census-bureau-acs" {
force_destroy = true
location = "US"
uniform_bucket_level_access = true
lifecycle {
ignore_changes = [
logging,
]
}
}

output "storage_bucket-census-bureau-acs-name" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "congressionaldistrict_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_congressionaldistrict_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "congressionaldistrict_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "congressionaldistrict_2019_1yr" {
]
}

output "bigquery_table-congressionaldistrict_2019_1yr-table_id" {
value = google_bigquery_table.congressionaldistrict_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_congressionaldistrict_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_congressionaldistrict_2019_1yr.table_id
}

output "bigquery_table-congressionaldistrict_2019_1yr-id" {
value = google_bigquery_table.congressionaldistrict_2019_1yr.id
output "bigquery_table-census_bureau_acs_congressionaldistrict_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_congressionaldistrict_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "congressionaldistrict_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_congressionaldistrict_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "congressionaldistrict_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "congressionaldistrict_2019_5yr" {
]
}

output "bigquery_table-congressionaldistrict_2019_5yr-table_id" {
value = google_bigquery_table.congressionaldistrict_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_congressionaldistrict_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_congressionaldistrict_2019_5yr.table_id
}

output "bigquery_table-congressionaldistrict_2019_5yr-id" {
value = google_bigquery_table.congressionaldistrict_2019_5yr.id
output "bigquery_table-census_bureau_acs_congressionaldistrict_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_congressionaldistrict_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "county_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_county_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "county_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "county_2019_1yr" {
]
}

output "bigquery_table-county_2019_1yr-table_id" {
value = google_bigquery_table.county_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_county_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_county_2019_1yr.table_id
}

output "bigquery_table-county_2019_1yr-id" {
value = google_bigquery_table.county_2019_1yr.id
output "bigquery_table-census_bureau_acs_county_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_county_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "county_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_county_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "county_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "county_2019_5yr" {
]
}

output "bigquery_table-county_2019_5yr-table_id" {
value = google_bigquery_table.county_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_county_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_county_2019_5yr.table_id
}

output "bigquery_table-county_2019_5yr-id" {
value = google_bigquery_table.county_2019_5yr.id
output "bigquery_table-census_bureau_acs_county_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_county_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "place_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_place_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "place_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "place_2019_1yr" {
]
}

output "bigquery_table-place_2019_1yr-table_id" {
value = google_bigquery_table.place_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_place_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_place_2019_1yr.table_id
}

output "bigquery_table-place_2019_1yr-id" {
value = google_bigquery_table.place_2019_1yr.id
output "bigquery_table-census_bureau_acs_place_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_place_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "place_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_place_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "place_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "place_2019_5yr" {
]
}

output "bigquery_table-place_2019_5yr-table_id" {
value = google_bigquery_table.place_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_place_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_place_2019_5yr.table_id
}

output "bigquery_table-place_2019_5yr-id" {
value = google_bigquery_table.place_2019_5yr.id
output "bigquery_table-census_bureau_acs_place_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_place_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "puma_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_puma_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "puma_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "puma_2019_1yr" {
]
}

output "bigquery_table-puma_2019_1yr-table_id" {
value = google_bigquery_table.puma_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_puma_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_puma_2019_1yr.table_id
}

output "bigquery_table-puma_2019_1yr-id" {
value = google_bigquery_table.puma_2019_1yr.id
output "bigquery_table-census_bureau_acs_puma_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_puma_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "puma_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_puma_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "puma_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "puma_2019_5yr" {
]
}

output "bigquery_table-puma_2019_5yr-table_id" {
value = google_bigquery_table.puma_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_puma_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_puma_2019_5yr.table_id
}

output "bigquery_table-puma_2019_5yr-id" {
value = google_bigquery_table.puma_2019_5yr.id
output "bigquery_table-census_bureau_acs_puma_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_puma_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "schooldistrictelementary_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_schooldistrictelementary_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "schooldistrictelementary_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "schooldistrictelementary_2019_1yr" {
]
}

output "bigquery_table-schooldistrictelementary_2019_1yr-table_id" {
value = google_bigquery_table.schooldistrictelementary_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_schooldistrictelementary_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictelementary_2019_1yr.table_id
}

output "bigquery_table-schooldistrictelementary_2019_1yr-id" {
value = google_bigquery_table.schooldistrictelementary_2019_1yr.id
output "bigquery_table-census_bureau_acs_schooldistrictelementary_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictelementary_2019_1yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "schooldistrictelementary_2019_5yr" {
resource "google_bigquery_table" "census_bureau_acs_schooldistrictelementary_2019_5yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "schooldistrictelementary_2019_5yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "schooldistrictelementary_2019_5yr" {
]
}

output "bigquery_table-schooldistrictelementary_2019_5yr-table_id" {
value = google_bigquery_table.schooldistrictelementary_2019_5yr.table_id
output "bigquery_table-census_bureau_acs_schooldistrictelementary_2019_5yr-table_id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictelementary_2019_5yr.table_id
}

output "bigquery_table-schooldistrictelementary_2019_5yr-id" {
value = google_bigquery_table.schooldistrictelementary_2019_5yr.id
output "bigquery_table-census_bureau_acs_schooldistrictelementary_2019_5yr-id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictelementary_2019_5yr.id
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


resource "google_bigquery_table" "schooldistrictsecondary_2019_1yr" {
resource "google_bigquery_table" "census_bureau_acs_schooldistrictsecondary_2019_1yr" {
project = var.project_id
dataset_id = "census_bureau_acs"
table_id = "schooldistrictsecondary_2019_1yr"
Expand All @@ -30,10 +30,10 @@ resource "google_bigquery_table" "schooldistrictsecondary_2019_1yr" {
]
}

output "bigquery_table-schooldistrictsecondary_2019_1yr-table_id" {
value = google_bigquery_table.schooldistrictsecondary_2019_1yr.table_id
output "bigquery_table-census_bureau_acs_schooldistrictsecondary_2019_1yr-table_id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictsecondary_2019_1yr.table_id
}

output "bigquery_table-schooldistrictsecondary_2019_1yr-id" {
value = google_bigquery_table.schooldistrictsecondary_2019_1yr.id
output "bigquery_table-census_bureau_acs_schooldistrictsecondary_2019_1yr-id" {
value = google_bigquery_table.census_bureau_acs_schooldistrictsecondary_2019_1yr.id
}
Loading

0 comments on commit 2d81124

Please sign in to comment.