Provisions the VM for running TSB on GCP.
- The terraform CLI
- A GCP account and a target GCP project with a service account key
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.