Deployment
Deploy the GCP Brain VM using the Vectra template and `gcloud infra-manager`, then connect and complete provisioning.
Deploying the Brain Image
####################################################################################
# This configuration deploys resources necessary for the Vectra Brain product. #
# #
# This template can be deployed with the `gcloud` commandline tool. #
# Please save this file into an empty directory of your choosing. #
# Before deploying the template, update the arguments in this file to #
# the desired values. The comment above each argument should explain the argument. #
# #
# Then, from within the directory, run: (replacing the placeholders in <>) #
# $ gcloud infra-manager deployments apply \ #
# --service-account <your_service_account> \ #
# --project <your_project> \ #
# projects/<your_project>/locations/<your_region>/deployments/<deployment_name> \ #
# --local-source=./ #
# #
# You may also use Terraform on its own if you are familiar with using Terraform. #
# #
####################################################################################
# the label of the module ("my_test_brain") is only used internally by terraform,
# so you can set it to anything
module "my_test_brain" {
source = "https://cognito-public-deployment-tools.s3.us-west-2.amazonaws.com/GCPBrain/9.7.zip"
# Name of the resources to be created (will be appended to; e.g. the name `vectra-brain` will create `vectra-brain-vm` and `vectra-brain-os`)
name = "brain-resources"
# Token for provisioning with Vectra, UUID format
provision-token = "6f9defc5-0db2-4854-92fe-5bb4dfc7b1f8"
# SSH public key for vectra user (format: ssh-rsa XXXX)
ssh-key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAtruncatedforvisibilityreasons"
# Project in which to deploy (project ID)
project = "example-dev"
# Service account name for VM (only 'name' in <name>@<project>.iam.gserviceaccount.com)
service-account = "tme-test"
# Region in which to deploy
region = "us-east4"
# Zone in which to deploy (actual zone, not just region)
zone = "us-east4-a"
# Size of brain VM, must be one of n2-highmem-16, n2-highmem-32, n2-highmem-64, n2-highmem-96
size = "n2-highmem-96"
# Base image provided by Vectra
image = "projects/vectra-shared-images/global/images/vectra-gcp-brain-9-7"
# Management subnetwork for VM (subnetwork selflink, such as projects/PROJ/regions/REG/subnetworks/SUBNET)
subnetwork = "projects/example-dev/regions/us-east4/subnetworks/mgt"
}


Connecting to the Brain
Completing the Brain Deployment




Default login credentials
Last updated
Was this helpful?