/** * Copyright 2023 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. */ # tfdoc:file:description GKE multitenant stage resources. module "branch-gke-folder" { source = "../../../modules/folder" count = var.fast_features.gke ? 1 : 0 parent = module.root-folder.id name = "GKE" tag_bindings = { context = var.tags.values["${var.tags.names.context}/gke"] } } module "branch-gke-dev-folder" { source = "../../../modules/folder" count = var.fast_features.gke ? 1 : 0 parent = module.branch-gke-folder.0.id name = "Development" iam = { "roles/owner" = [local.automation_sas_iam.gke-dev] "roles/logging.admin" = [local.automation_sas_iam.gke-dev] "roles/resourcemanager.folderAdmin" = [local.automation_sas_iam.gke-dev] "roles/resourcemanager.projectCreator" = [local.automation_sas_iam.gke-dev] "roles/compute.xpnAdmin" = [local.automation_sas_iam.gke-dev] } tag_bindings = { context = var.tags.values["${var.tags.names.environment}/development"] } } module "branch-gke-prod-folder" { source = "../../../modules/folder" count = var.fast_features.gke ? 1 : 0 parent = module.branch-gke-folder.0.id name = "Production" iam = { "roles/owner" = [local.automation_sas_iam.gke-prod] "roles/logging.admin" = [local.automation_sas_iam.gke-prod] "roles/resourcemanager.folderAdmin" = [local.automation_sas_iam.gke-prod] "roles/resourcemanager.projectCreator" = [local.automation_sas_iam.gke-prod] "roles/compute.xpnAdmin" = [local.automation_sas_iam.gke-prod] } tag_bindings = { context = var.tags.values["${var.tags.names.environment}/production"] } } module "branch-gke-dev-sa" { source = "../../../modules/iam-service-account" count = var.fast_features.gke ? 1 : 0 project_id = var.automation.project_id name = "gke-dev-0" prefix = var.prefix service_account_create = var.test_skip_data_sources iam = { "roles/iam.serviceAccountTokenCreator" = concat( ( local.groups.gcp-devops == null ? [] : ["group:${local.groups.gcp-devops}"] ), compact([ try(module.branch-gke-dev-sa-cicd.0.iam_email, null) ]) ) } iam_storage_roles = { (var.automation.outputs_bucket) = ["roles/storage.admin"] } } module "branch-gke-prod-sa" { source = "../../../modules/iam-service-account" count = var.fast_features.gke ? 1 : 0 project_id = var.automation.project_id name = "gke-prod-0" prefix = var.prefix service_account_create = var.test_skip_data_sources iam = { "roles/iam.serviceAccountTokenCreator" = concat( ( local.groups.gcp-devops == null ? [] : ["group:${local.groups.gcp-devops}"] ), compact([ try(module.branch-gke-prod-sa-cicd.0.iam_email, null) ]) ) } iam_storage_roles = { (var.automation.outputs_bucket) = ["roles/storage.admin"] } } module "branch-gke-dev-gcs" { source = "../../../modules/gcs" count = var.fast_features.gke ? 1 : 0 project_id = var.automation.project_id name = "dev-resman-gke-0" prefix = var.prefix versioning = true iam = { "roles/storage.objectAdmin" = [local.automation_sas_iam.gke-dev] } } module "branch-gke-prod-gcs" { source = "../../../modules/gcs" count = var.fast_features.gke ? 1 : 0 project_id = var.automation.project_id name = "prod-resman-gke-0" prefix = var.prefix versioning = true iam = { "roles/storage.objectAdmin" = [local.automation_sas_iam.gke-prod] } }