cloud-foundation-fabric/examples/data-solutions/data-platform-foundations/06-common.tf

96 lines
2.6 KiB
Terraform
Raw Normal View History

2022-01-21 09:40:11 -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-02 06:31:54 -08:00
# tfdoc:file:description common project.
2022-01-31 21:41:33 -08:00
2022-01-21 09:40:11 -08:00
locals {
2022-02-02 06:31:54 -08:00
group_iam_cmn = {
2022-01-21 09:40:11 -08:00
"${local.groups.data-engineers}" = [
"roles/dlp.reader",
"roles/dlp.user",
"roles/dlp.estimatesAdmin",
],
"${local.groups.data-security}" = [
"roles/dlp.admin",
],
}
2022-02-02 06:31:54 -08:00
iam_cmn = {
2022-01-21 09:40:11 -08:00
"roles/dlp.user" = [
module.lod-sa-df-0.iam_email,
module.trf-sa-df-0.iam_email
]
}
2022-02-02 06:31:54 -08:00
prefix_cmn = "${var.prefix}-cmn"
2022-01-21 09:40:11 -08:00
}
2022-01-31 21:57:13 -08:00
# Project
2022-01-21 09:40:11 -08:00
2022-02-02 06:31:54 -08:00
module "cmn-prj" {
2022-01-21 09:40:11 -08:00
source = "../../../modules/project"
2022-02-02 06:31:54 -08:00
name = var.project_id["common"]
2022-01-21 09:40:11 -08:00
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
2022-02-02 06:31:54 -08:00
iam = var.project_create != null ? local.iam_cmn : {}
iam_additive = var.project_create == null ? local.iam_cmn : {}
group_iam = local.group_iam_cmn
2022-01-21 09:40:11 -08:00
services = concat(var.project_services, [
2022-02-02 07:51:14 -08:00
"datacatalog.googleapis.com",
2022-01-21 09:40:11 -08:00
"dlp.googleapis.com",
])
}
# Uncomment this section and assigne key links accondingly in local. variable
2022-02-02 06:31:54 -08:00
# if you want to create KMS keys in the common projet
2022-01-21 09:40:11 -08:00
2022-02-02 07:51:14 -08:00
# module "cmn-kms-0" {
2022-01-31 09:58:55 -08:00
# source = "../../../modules/kms"
2022-02-02 07:51:14 -08:00
# project_id = module.cmn-prj.project_id
2022-01-31 09:58:55 -08:00
# keyring = {
# name = "${var.prefix}-kr-global",
# location = var.location_config.region
# }
# keys = {
# pubsub = null
# }
# }
2022-02-02 07:51:14 -08:00
# module "cmn-kms-1" {
2022-01-31 09:58:55 -08:00
# source = "../../../modules/kms"
2022-02-02 07:51:14 -08:00
# project_id = module.cmn-prj.project_id
2022-01-31 09:58:55 -08:00
# keyring = {
# name = "${var.prefix}-kr-mregional",
# location = var.location_config.region
# }
# keys = {
# bq = null
# storage = null
# }
# }
2022-01-21 09:40:11 -08:00
2022-02-02 07:51:14 -08:00
# module "cmn-kms-2" {
2022-01-31 09:58:55 -08:00
# source = "../../../modules/kms"
2022-02-02 07:51:14 -08:00
# project_id = module.cmn-prj.project_id
2022-01-31 09:58:55 -08:00
# keyring = {
# name = "${var.prefix}-kr-regional",
# location = var.location_config.region
# }
# keys = {
# composer = null
# dataflow = null
# }
# }