cd tf-vgputest
terraform initCreate local vars file. One per region makes sense. This can override all defaults in variables.tf.
ncount = 10
region = "bgo"
flavor_name = "gr1.L40S.24g.4xlarge"
ssh_public_key = "~/.ssh/id_ed25519.pub"
# This is needed to access the instance over ssh
allow_ssh_from_v6 = [
"<cidr>"
]
allow_ssh_from_v4 = [
"<cidr>"
]source <openrc ENV file>
terraform plan --var-file <loc>.tfvars
terraform apply --var-file <loc>.tfvars
terraform destroy --var-file <loc>.tfvars