From c3d31e0ba61fd8ae2ddf3c09592fef191ac95b74 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 18 Dec 2019 17:24:28 +0000 Subject: feat(infra/gcp): Configure source repository for the depot --- infra/gcp/default.tf | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'infra/gcp/default.tf') diff --git a/infra/gcp/default.tf b/infra/gcp/default.tf index d13345393bd4..3011ec234bc0 100644 --- a/infra/gcp/default.tf +++ b/infra/gcp/default.tf @@ -27,6 +27,7 @@ resource "google_project_services" "primary" { "bigquerystorage.googleapis.com", "cloudapis.googleapis.com", "clouddebugger.googleapis.com", + "cloudfunctions.googleapis.com", "cloudkms.googleapis.com", "cloudtrace.googleapis.com", "compute.googleapis.com", @@ -40,6 +41,7 @@ resource "google_project_services" "primary" { "monitoring.googleapis.com", "oslogin.googleapis.com", "pubsub.googleapis.com", + "run.googleapis.com", "servicemanagement.googleapis.com", "serviceusage.googleapis.com", "sourcerepo.googleapis.com", @@ -101,3 +103,8 @@ resource "google_kms_crypto_key" "kontemplate_key" { prevent_destroy = true } } + +# Configure the git repository that contains everything. +resource "google_sourcerepo_repository" "depot" { + name = "depot" +} -- cgit 1.4.1