cloud-foundation-fabric/examples/data-solutions/dp-foundation/04-trf-main.tf

77 lines
2.4 KiB
Terraform
Raw Normal View History

2022-01-17 23:58:14 -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.
2022-02-01 00:09:53 -08:00
# tfdoc:file:description Trasformation project.
2022-01-31 21:41:33 -08:00
2022-01-17 23:58:14 -08:00
locals {
group_iam_trf = {
"${local.groups.data-engineers}" = [
"roles/bigquery.jobUser",
"roles/dataflow.admin",
]
}
iam_trf = {
"roles/bigquery.dataViewer" = [
module.orc-sa-cmp-0.iam_email
]
"roles/bigquery.jobUser" = [
module.trf-sa-bq-0.iam_email,
]
"roles/dataflow.admin" = [
module.orc-sa-cmp-0.iam_email,
]
"roles/dataflow.worker" = [
module.trf-sa-df-0.iam_email
]
"roles/storage.objectAdmin" = [
module.trf-sa-df-0.iam_email,
module.orc-sa-cmp-0.iam_email,
"serviceAccount:${module.trf-prj.service_accounts.robots.dataflow}"
]
}
prefix_trf = "${var.prefix}-trf"
}
2022-01-31 21:57:13 -08:00
# Project
2022-01-17 23:58:14 -08:00
module "trf-prj" {
source = "../../../modules/project"
name = var.project_id["trasformation"]
parent = try(var.project_create.parent, null)
billing_account = try(var.project_create.billing_account_id, null)
project_create = var.project_create != null
prefix = var.project_create == null ? null : var.prefix
# additive IAM bindings avoid disrupting bindings in existing project
iam = var.project_create != null ? local.iam_trf : {}
iam_additive = var.project_create == null ? local.iam_trf : {}
group_iam = local.group_iam_trf
services = concat(var.project_services, [
"bigquery.googleapis.com",
"bigqueryreservation.googleapis.com",
"bigquerystorage.googleapis.com",
"cloudkms.googleapis.com",
"compute.googleapis.com",
"dataflow.googleapis.com",
2022-01-21 09:40:11 -08:00
"dlp.googleapis.com",
2022-01-17 23:58:14 -08:00
"pubsub.googleapis.com",
"servicenetworking.googleapis.com",
"storage.googleapis.com",
"storage-component.googleapis.com"
])
2022-01-19 12:33:24 -08:00
service_encryption_key_ids = {
dataflow = [try(local.service_encryption_keys.dataflow, null)]
storage = [try(local.service_encryption_keys.storage, null)]
2022-01-19 12:33:24 -08:00
}
2022-01-17 23:58:14 -08:00
}