Installation and basic configuration of Terraform (CLI interface)

Terraform is a tool for managing the vCloud Director cloud infrastructure from the command line. This article demonstrates the installation and initial configuration in CentOS 7, but it is the same for the vast majority of Linux distributions. For a successful installation, you will need to have the wget and unzip utilities installed on your system.

First, let's update the system with one command:

sudo yum update

Next, let's install wget, unzip and the nano text editor (check the installation) with the command

sudo yum install wget unzip nano

Then download the latest (at the time of writing 0.12.20) version of Terraform from the developer's website 

(https://www.terraform.io/downloads.html):

sudo wget https://releases.hashicorp.com/terraform/0.12.20/terraform_0.12.20_linux_amd64.zip

(note that this file is for the amd64 architecture)

 

The next step is to unzip:

sudo unzip ./terraform_0.12.20_linux_amd64.zip -d /usr/local/bin

The installation is finished, check the correctness with the command:

terraform -v

If it's done correctly, you should see a version of Terraform.

Next you need to create a directory where the working configuration will be:

mkdir test

Let's go to the directory we created:

cd test

Terraform uses configuration files with a .tf extension. Let's create a new configuration file and open it:

sudo nano test.tf

Enter the minimum set of variables for a successful connection:

 provider "vcd" {

  user = "your_login"

  password = "your_password"

  org = "organization name"

  url = "https://vcd.cloud4y.ru"

}

Save the configuration and try to connect:

terraform init

If it's done correctly, you will get this answer:

Now you can manage your organization's cloud infrastructure from the command line.

Have you tried Cloud4U cloud services? Not yet?

Go to the Main Website

Try for free

  • 102 Users Found This Useful
Was this answer helpful?

Related Articles

How to set up 2-factor (password +sms code) authorization in vCD

1. SETTING vCD   1. open https://idp.cloud4y.ru/idp/shibboleth and save the content as an XML...

Loading OVF through vCloud Director

In this article, we will show you how to import your VMs through the internal interface of vCloud...

Configuring and Using vcd-cli (CLI Interface)

Manage your cloud infrastructure from a command line interface using vcd-cli To easily deploy...

Export and import vAPP directly from vCloud Director using OVFTool

Export and import vAPP directly from vCloud Director using OVFToolOVFTool is a useful tool from...

How to check used/available vDC resources

To view the resource limits assigned to your vDC, go to your vDC To view the vCPU and RAM, go...

Powered by WHMCompleteSolution