infra/terraform/dev-org/dev-project-cleanup/project.tf (40 lines of code) (raw):

/** * Copyright 2019 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. */ resource "google_folder" "cft-dev-management" { display_name = "CFT Dev Management" parent = "organizations/${local.org_id}" } module "project" { source = "terraform-google-modules/project-factory/google" version = "~> 17.0" name = "cft-project-manager" random_project_id = true org_id = local.org_id folder_id = google_folder.cft-dev-management.id billing_account = local.billing_account labels = local.exclude_labels activate_apis = [ "cloudresourcemanager.googleapis.com", "cloudscheduler.googleapis.com", "cloudbuild.googleapis.com", "cloudfunctions.googleapis.com", "pubsub.googleapis.com", "storage-api.googleapis.com", "serviceusage.googleapis.com", "storage-component.googleapis.com", "appengine.googleapis.com" ] }