foundation-extension/4-projects/business_unit_1/shared/infra_pipeline.tf (55 lines of code) (raw):

/** * Copyright 2021 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. */ module "app_infra_cloudbuild_project" { source = "github.com/terraform-google-modules/terraform-example-foundation/4-projects/modules/single_project" impersonate_service_account = var.terraform_service_account org_id = var.org_id billing_account = var.billing_account folder_id = data.google_active_folder.common.name environment = "common" alert_spent_percents = var.alert_spent_percents alert_pubsub_topic = var.alert_pubsub_topic budget_amount = var.budget_amount project_prefix = var.project_prefix activate_apis = [ "cloudbuild.googleapis.com", "sourcerepo.googleapis.com", "cloudkms.googleapis.com", "cloudresourcemanager.googleapis.com", "artifactregistry.googleapis.com" ] # Metadata project_suffix = "infra-pipeline" application_name = "app-infra-pipelines" billing_code = "1234" primary_contact = "example@example.com" secondary_contact = "example2@example.com" business_code = "bu1" } module "infra_pipelines" { source = "github.com/terraform-google-modules/terraform-example-foundation/4-projects/modules/infra_pipelines" impersonate_service_account = var.terraform_service_account cloudbuild_project_id = module.app_infra_cloudbuild_project.project_id billing_account = var.billing_account default_region = var.primary_location app_infra_repos = ["boa-infra"] terraform_apply_branches = ["development", "non\\-production", "production", "shared"] folders_to_grant_browser_role = [ data.google_active_folder.common.name, data.google_active_folder.development.name, data.google_active_folder.non_production.name, data.google_active_folder.production.name, ] }