Skip to content

Commit

Permalink
feat: Onboard Google Diversity Annual Report 2021 dataset (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
adlersantos committed Jun 28, 2021
1 parent a6e0868 commit 13ebee9
Show file tree
Hide file tree
Showing 8 changed files with 1,552 additions and 0 deletions.
216 changes: 216 additions & 0 deletions datasets/google_dei/_terraform/diversity_annual_report_pipeline.tf
@@ -0,0 +1,216 @@
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


resource "google_bigquery_table" "dar_intersectional_attrition" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_intersectional_attrition"

description = "This table contains the attrition index score of Googlers in the U.S. cut by race and gender combined. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_intersectional_attrition-table_id" {
value = google_bigquery_table.dar_intersectional_attrition.table_id
}

output "bigquery_table-dar_intersectional_attrition-id" {
value = google_bigquery_table.dar_intersectional_attrition.id
}

resource "google_bigquery_table" "dar_intersectional_hiring" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_intersectional_hiring"

description = "This table contains the hiring breakdown of Googlers in the U.S. cut by race and gender combined. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_intersectional_hiring-table_id" {
value = google_bigquery_table.dar_intersectional_hiring.table_id
}

output "bigquery_table-dar_intersectional_hiring-id" {
value = google_bigquery_table.dar_intersectional_hiring.id
}

resource "google_bigquery_table" "dar_intersectional_representation" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_intersectional_representation"

description = "This table contains the representation of Googlers in the U.S. cut by race and gender combined. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_intersectional_representation-table_id" {
value = google_bigquery_table.dar_intersectional_representation.table_id
}

output "bigquery_table-dar_intersectional_representation-id" {
value = google_bigquery_table.dar_intersectional_representation.id
}

resource "google_bigquery_table" "dar_non_intersectional_representation" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_non_intersectional_representation"

description = "This table contains the representation of Googlers in the U.S. cut by race and gender separately and the representation of global Googlers cut by gender. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_non_intersectional_representation-table_id" {
value = google_bigquery_table.dar_non_intersectional_representation.table_id
}

output "bigquery_table-dar_non_intersectional_representation-id" {
value = google_bigquery_table.dar_non_intersectional_representation.id
}

resource "google_bigquery_table" "dar_non_intersectional_attrition" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_non_intersectional_attrition"

description = "This table contains the attrition index score of Googlers in the U.S. cut by race and gender separately and the attrition index score of global Googlers cut by gender. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_non_intersectional_attrition-table_id" {
value = google_bigquery_table.dar_non_intersectional_attrition.table_id
}

output "bigquery_table-dar_non_intersectional_attrition-id" {
value = google_bigquery_table.dar_non_intersectional_attrition.id
}

resource "google_bigquery_table" "dar_non_intersectional_hiring" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_non_intersectional_hiring"

description = "This table contains the hiring breakdown of Googlers in the U.S. cut by race and gender separately and the hiring breakdown of global Googlers cut by gender. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_non_intersectional_hiring-table_id" {
value = google_bigquery_table.dar_non_intersectional_hiring.table_id
}

output "bigquery_table-dar_non_intersectional_hiring-id" {
value = google_bigquery_table.dar_non_intersectional_hiring.id
}

resource "google_bigquery_table" "dar_region_non_intersectional_attrition" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_region_non_intersectional_attrition"

description = "This table contains the attrition index score of Googlers in the regions (EMEA, APAC, and the Americas) cut by gender. “Americas” includes all countries in North and South America in which we operate, excluding the U.S. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_region_non_intersectional_attrition-table_id" {
value = google_bigquery_table.dar_region_non_intersectional_attrition.table_id
}

output "bigquery_table-dar_region_non_intersectional_attrition-id" {
value = google_bigquery_table.dar_region_non_intersectional_attrition.id
}

resource "google_bigquery_table" "dar_region_non_intersectional_hiring" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_region_non_intersectional_hiring"

description = "This table contains the hiring breakdown of Googlers in the regions (EMEA, APAC, and the Americas) cut by gender. “Americas” includes all countries in North and South America in which we operate, excluding the U.S. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_region_non_intersectional_hiring-table_id" {
value = google_bigquery_table.dar_region_non_intersectional_hiring.table_id
}

output "bigquery_table-dar_region_non_intersectional_hiring-id" {
value = google_bigquery_table.dar_region_non_intersectional_hiring.id
}

resource "google_bigquery_table" "dar_region_non_intersectional_representation" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_region_non_intersectional_representation"

description = "This table contains the representation of Googlers in the regions (EMEA, APAC, and the Americas) cut by race and gender. “Americas” includes all countries in North and South America in which we operate, excluding the U.S. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_region_non_intersectional_representation-table_id" {
value = google_bigquery_table.dar_region_non_intersectional_representation.table_id
}

output "bigquery_table-dar_region_non_intersectional_representation-id" {
value = google_bigquery_table.dar_region_non_intersectional_representation.id
}

resource "google_bigquery_table" "dar_self_id" {
project = var.project_id
dataset_id = "google_dei"
table_id = "dar_self_id"

description = "This table contains the representation of Googlers globally who identify as LGBTQ+, members of the military or veterans, people with disabilities, or non-binary genders. Some data may be intentionally redacted due to security and privacy restrictions regarding smaller n-counts. In those cases, the data is displayed as a null value."

depends_on = [
google_bigquery_dataset.google_dei
]
}

output "bigquery_table-dar_self_id-table_id" {
value = google_bigquery_table.dar_self_id.table_id
}

output "bigquery_table-dar_self_id-id" {
value = google_bigquery_table.dar_self_id.id
}
36 changes: 36 additions & 0 deletions datasets/google_dei/_terraform/google_dei_dataset.tf
@@ -0,0 +1,36 @@
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


resource "google_bigquery_dataset" "google_dei" {
dataset_id = "google_dei"
project = var.project_id
description = "The diversity annual report from Google provides data on the representation, hiring, and retention of employees in our company including race and gender demographics."
}

output "bigquery_dataset-google_dei-dataset_id" {
value = google_bigquery_dataset.google_dei.dataset_id
}

resource "google_storage_bucket" "ggl-dei" {
name = "${var.bucket_name_prefix}-ggl-dei"
force_destroy = true
uniform_bucket_level_access = true
}

output "storage_bucket-ggl-dei-name" {
value = google_storage_bucket.ggl-dei.name
}
25 changes: 25 additions & 0 deletions datasets/google_dei/_terraform/google_diversity_dataset.tf
@@ -0,0 +1,25 @@
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


resource "google_bigquery_dataset" "google_diversity" {
dataset_id = "google_diversity"
project = var.project_id
}

output "bigquery_dataset-google_diversity-dataset_id" {
value = google_bigquery_dataset.google_diversity.dataset_id
}
28 changes: 28 additions & 0 deletions datasets/google_dei/_terraform/provider.tf
@@ -0,0 +1,28 @@
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


provider "google" {
project = var.project_id
impersonate_service_account = var.impersonating_acct
region = var.region
}

data "google_client_openid_userinfo" "me" {}

output "impersonating-account" {
value = data.google_client_openid_userinfo.me.email
}
23 changes: 23 additions & 0 deletions datasets/google_dei/_terraform/variables.tf
@@ -0,0 +1,23 @@
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


variable "project_id" {}
variable "bucket_name_prefix" {}
variable "impersonating_acct" {}
variable "region" {}
variable "env" {}

30 changes: 30 additions & 0 deletions datasets/google_dei/dataset.yaml
@@ -0,0 +1,30 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

dataset:
name: google_dei

friendly_name: ~
description: "Google Diversity, Equity, and Inclusion (DEI)"
dataset_sources: ~
terms_of_use: ~

resources:
- type: bigquery_dataset
dataset_id: google_dei
description: "The diversity annual report from Google provides data on the representation, hiring, and retention of employees in our company including race and gender demographics."

- type: storage_bucket
name: "ggl-dei"
uniform_bucket_level_access: True

0 comments on commit 13ebee9

Please sign in to comment.