Generate an SSH key pair (public key, private key) using ssh-keygen
to use for Arm VMs access. To generate the key pair, follow this
guide
.
If you already have an SSH key pair present in the ~/.ssh
directory, you can skip this step.
The installation of Terraform on your Desktop/Laptop needs to communicate with GCP. Thus, Terraform needs to be authenticated.
To obtain GCP user credentials, follow this guide .
Add resources required to create a VM in main.tf
.
Add below code in main.tf
file:
Replace project_ID
with your value which can be found in the
Dashboard
of Google Cloud console.
Run terraform init
to initialize the Terraform deployment. This command downloads all the modules required to manage your resources.
The output should be similar to:
Run terraform plan
to create an execution plan.
A long output of resources to be created will be printed.
Run terraform apply
to apply the execution plan to your cloud infrastructure. Below command creates all required infrastructure.
Output should be similar to:
In the Google Cloud console, go to the VM instances page . The VM created through Terraform must be displayed in the screen.
Run following command to connect to VM through SSH:
Replace <Public IP>
with the instance’s IP.
Output should be similar to:
Run terraform destroy
to delete all resources created.