From fcdefc796a9aa42f658ac8526a4600a5aaaab440 Mon Sep 17 00:00:00 2001 From: Drew Brown Date: Wed, 20 Sep 2023 17:40:18 -0600 Subject: [PATCH] feat: Onboarding new repositories (UP 13.1 / 13.2) (#1852) Co-authored-by: Awais Malik --- .../terraform/test-org/ci-triggers/locals.tf | 2 ++ infra/terraform/test-org/org/locals.tf | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/infra/terraform/test-org/ci-triggers/locals.tf b/infra/terraform/test-org/ci-triggers/locals.tf index dc38ea5247f..9944525e022 100644 --- a/infra/terraform/test-org/ci-triggers/locals.tf +++ b/infra/terraform/test-org/ci-triggers/locals.tf @@ -30,6 +30,8 @@ locals { "cloud-foundation-training" = "cloud-foundation-training", "example-foundation-app" = "terraform-example-foundation-app", "anthos-samples" = "anthos-samples" + "cloud-deployment-gce" = "terraform-cloud-deployment-gce", + "cloud-deployment-gke" = "terraform-cloud-deployment-gke", "docs-samples" = "terraform-docs-samples" "dynamic-python-webapp" = "terraform-dynamic-python-webapp" "dynamic-javascript-webapp" = "terraform-dynamic-javascript-webapp" diff --git a/infra/terraform/test-org/org/locals.tf b/infra/terraform/test-org/org/locals.tf index ff9247571cf..a6f1f7b7795 100644 --- a/infra/terraform/test-org/org/locals.tf +++ b/infra/terraform/test-org/org/locals.tf @@ -752,6 +752,28 @@ locals { owners = ["anaik91", "imrannayer"] topics = local.common_topics.db }, + { + name = "terraform-cloud-deployment-gce" + short_name = "cloud-deployment-gce" + org = "GoogleCloudPlatform" + description = "Deploy a change to a live stateful service (Java on GCE)" + groups = ["torus-dpe", "dee-platform-ops", "dee-data-ai", local.jss_common_group] + enable_periodic = true + lint_env = { + ENABLE_BPMETADATA = "1" + } + }, + { + name = "terraform-cloud-deployment-gke" + short_name = "cloud-deployment-gke" + org = "GoogleCloudPlatform" + description = "Deploy a change to a live stateful service (Go on GKE)" + groups = ["torus-dpe", "dee-platform-ops", "dee-data-ai", local.jss_common_group] + enable_periodic = true + lint_env = { + ENABLE_BPMETADATA = "1" + } + }, { name = "terraform-pubsub-integration-golang" org = "GoogleCloudPlatform"