Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 551 Bytes

readme.md

File metadata and controls

29 lines (19 loc) · 551 Bytes

Provisions the VM for running TSB on GCP.

Prerequisites

  • The terraform CLI
  • A GCP account and a target GCP project with a service account key

Steps

Create a terraform.tfvars file and in it, specify your gcp project name, and service account key json file name:

gcp_project_name = "my-gcp-project"
credentials_filename = "~/.ssh/my-service-account-key.json"

Initialize terraform:

terraform init

Apply the terraform:

terraform apply

See the parent directory's readme file for full context.