cloud-foundation-fabric/examples/data-solutions/data-platform-foundations/04-transformation.tf

110 lines
3.6 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:30:29 -08:00
# tfdoc:file:description Trasformation project and VPC.
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-02-03 05:25:46 -08:00
shared_vpc_service_config = local._shared_vpc_service_config
2022-01-17 23:58:14 -08:00
}
2022-02-01 00:30:29 -08:00
module "trf-vpc" {
count = var.network_config.network != null ? 0 : 1
source = "../../../modules/net-vpc"
project_id = module.trf-prj.project_id
name = "${local.prefix_trf}-vpc"
subnets = [
{
2022-02-05 00:04:18 -08:00
ip_cidr_range = var.network_config.vpc_subnet.transformation.range
2022-02-01 00:30:29 -08:00
name = "${local.prefix_trf}-subnet"
region = var.location_config.region
secondary_ip_range = {}
}
]
}
module "trf-vpc-firewall" {
count = var.network_config.network != null ? 0 : 1
source = "../../../modules/net-vpc-firewall"
project_id = module.trf-prj.project_id
2022-02-03 05:25:46 -08:00
network = local._networks.transformation.network_name
admin_ranges = [local._networks.transformation.subnet_range]
2022-02-01 00:30:29 -08:00
}
module "trf-nat" {
2022-02-03 08:37:42 -08:00
count = var.network_config.enable_cloud_nat ? 1 : 0
2022-02-01 00:30:29 -08:00
source = "../../../modules/net-cloudnat"
project_id = module.trf-prj.project_id
region = var.location_config.region
2022-02-03 08:37:42 -08:00
name = "${local.prefix_trf}-default"
2022-02-03 05:25:46 -08:00
router_network = local._networks.transformation.network_name
2022-02-01 00:30:29 -08:00
}