Skip to content

skalolazka/vm-migrator-terraform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How to use:

cd tf
# create file terraform.tfvars and edit it with your values
# an example is below
terraform init
terraform apply

My current terraform.tfvars, you can copy it:

project_id = "NOT_PUBLIC"
instances = 2
source_region = "europe-west4"
source_zone = "europe-west4-a"

After TF creates the instances, they are all runnning. To stop all instances:

# change zone to yours, edit project ID
export $PROJECT=NOT_PUBLIC
gcloud compute instances list --project $PROJECT | grep -v NAME | cut -d' ' -f1 | perl -ple 's/(.*)/gcloud compute instances stop $1 --project $PROJECT --zone europe-west4-a/' | sh

To delete all instances after a migration test:

# change zone to yours, edit project ID
export $PROJECT=NOT_PUBLIC
gcloud compute instances list --project $PROJECT | grep -v NAME | cut -d' ' -f1 | perl -ple 's/(.*)/gcloud compute instances delete $1 --project $PROJECT --zone europe-west4-a --quiet/' > to_delete.sh
sh to_delete.sh

About

Terraform to test the VM migrator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages