feat(infra/gcp): Configure source repository for the depot
This commit is contained in:
parent
11022c1b88
commit
c3d31e0ba6
1 changed files with 7 additions and 0 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue