about summary refs log tree commit diff
path: root/infra/gcp/default.tf
diff options
context:
space:
mode:
Diffstat (limited to 'infra/gcp/default.tf')
-rw-r--r--infra/gcp/default.tf7
1 files changed, 7 insertions, 0 deletions
diff --git a/infra/gcp/default.tf b/infra/gcp/default.tf
index d13345393b..3011ec234b 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"
+}