cloud-foundation-fabric/examples/data-solutions/gcs-to-bq-with-least-privil.../outputs.tf

76 lines
2.9 KiB
Terraform
Raw Normal View History

2022-01-13 23:38:26 -08:00
# Copyright 2022 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
#
# https://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.
output "bq_tables" {
description = "Bigquery Tables."
value = module.bigquery-dataset.table_ids
}
output "buckets" {
description = "GCS Bucket Cloud KMS crypto keys."
value = {
2022-01-14 04:55:47 -08:00
data = module.gcs-data.name
df-tmp = module.gcs-df-tmp.name
}
}
2022-01-14 04:55:47 -08:00
output "project_id" {
description = "Project id."
value = module.project.project_id
}
output "serviceaccount" {
description = "Service Account."
value = {
2022-01-14 04:55:47 -08:00
bq = module.service-account-bq.email
df = module.service-account-df.email
orch = module.service-account-orch.email
landing = module.service-account-landing.email
}
}
output "command-01-gcs" {
description = "gcloud command to copy data into the created bucket impersonating the service account."
2022-01-14 04:55:47 -08:00
value = "gsutil -i ${module.service-account-landing.email} cp data-demo/* ${module.gcs-data.url}"
}
output "command-02-dataflow" {
description = "gcloud command to run dataflow template impersonating the service account."
value = <<EOT
gcloud --impersonate-service-account=${module.service-account-orch.email} dataflow jobs run test_batch_01 \
--gcs-location gs://dataflow-templates/latest/GCS_Text_to_BigQuery \
2022-01-14 04:55:47 -08:00
--project ${module.project.project_id} \
--region ${var.region} \
--disable-public-ips \
--subnetwork ${module.vpc.subnets[format("%s/%s", var.region, "subnet")].self_link} \
2022-01-14 04:55:47 -08:00
--staging-location ${module.gcs-df-tmp.url} \
--service-account-email ${module.service-account-df.email} \
2022-01-14 07:59:10 -08:00
${var.cmek_encryption ? format("--dataflow-kms-key=%s", module.kms[0].key_ids.key-df) : ""} \
--parameters \
javascriptTextTransformFunctionName=transform,\
2022-01-14 04:55:47 -08:00
JSONPath=${module.gcs-data.url}/person_schema.json,\
javascriptTextTransformGcsPath=${module.gcs-data.url}/person_udf.js,\
inputFilePattern=${module.gcs-data.url}/person.csv,\
outputTable=${module.project.project_id}:${module.bigquery-dataset.dataset_id}.${module.bigquery-dataset.tables["person"].table_id},\
bigQueryLoadingTemporaryDirectory=${module.gcs-df-tmp.url}
EOT
}
output "command-03-bq" {
description = "bq command to query imported data."
2022-01-14 04:55:47 -08:00
value = <<EOT
2022-01-14 07:59:10 -08:00
bq query --project_id=${module.project.project_id} --use_legacy_sql=false 'SELECT * FROM `${module.project.project_id}.${module.bigquery-dataset.dataset_id}.${module.bigquery-dataset.tables["person"].table_id}` LIMIT 1000'"
2022-01-14 04:55:47 -08:00
EOT
}