From 33af9003dcfaee2597dce96144ae38a87ba6579d Mon Sep 17 00:00:00 2001 From: Peeter Tomberg Date: Mon, 17 Jul 2023 02:33:29 +0300 Subject: [PATCH] chore: moved storage/cache stuff over to the same region as github runners --- packages/cli/src/commands/infra/setup-project.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/commands/infra/setup-project.ts b/packages/cli/src/commands/infra/setup-project.ts index 93dce7c6..e755635e 100644 --- a/packages/cli/src/commands/infra/setup-project.ts +++ b/packages/cli/src/commands/infra/setup-project.ts @@ -14,6 +14,7 @@ export const setupProject = new Command() const commands = [ // This is needed for terraform to work `gcloud services enable cloudresourcemanager.googleapis.com --project=${project}`, + `gcloud services enable sqladmin.googleapis.com --project=${project}`, // Linking billing account to the project `gcloud beta billing projects link ${project} --billing-account=${billingAccountId}`, ];