How to Install Terraform on Ubuntu 20.04/18.04/16.04 LTS

In this article, We are going to perform, How to Install Terraform on Ubuntu 20.04/18.04/16.04 LTS or any Cloud Instance like Amazon EC2, Azure VM, Google Compute Engine,etc. with preinstalled Ubuntu.

Introduction

Terraform is free and open source Infrastructure automation tool by Hashicorp which is used to create, build and change using infrastructure as a code across various cloud Providers like AWS, Microsoft Azure, GCP, etc.,

Prerequisites

  • Ubuntu Server with 20.04/18.04/16.04 LTS
  • 2 CPU and 4 GB RAM

Update the system packages

sudo apt update

Install the wget and unzip package to download and extract terraform setup

sudo apt-get install wget unzip -y

How to Install Terraform on Ubuntu

First download the latest terraform version setup from Terraform Official Site using wget.

sudo wget https://releases.hashicorp.com/terraform/0.14.7/terraform_0.14.7_linux_amd64.zip

Output:

https://releases.hashicorp.com/terraform/0.14.7/terraform_0.14.7_linux_amd64.zip
Resolving releases.hashicorp.com (releases.hashicorp.com)... 151.101.153.183, 2a04:4e42:24::439
Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.153.183|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 16838433 (16M) [application/zip]
Saving to: ‘terraform_0.12.26_linux_amd64.zip’

terraform_0.14.7_linux_amd64.zip 100%[==============================================================================>] 16.06M --.-KB/s in 0.1s

 (150 MB/s) - ‘terraform_0.14.7_linux_amd64.zip’ saved [16838433/16838433]

Extract the downloaded setup using unzip

sudo unzip terraform_0.14.7_linux_amd64.zip

Output:

Archive: terraform_0.14.7_linux_amd64.zip
inflating: terraform

Move the extracted setup to /usr/local/bin directory

sudo mv terraform /usr/local/bin/
Lets verify Terraform version using below command
terraform -v
Output:
Terraform v0.14.7

So we have performed How to Install Terraform on Ubuntu.

Lets check terraform commands

terraform

Output:

terraform
Usage: terraform [-version] [-help] <command> [args]

The available commands for execution are listed below.
The most common, useful commands are shown first, followed by
less common or more advanced commands. If you're just getting
started with Terraform, stick with the common commands. For the
other commands, please read the help and docs before usage.


Common commands:
    apply              Builds or changes infrastructure
    console            Interactive console for Terraform interpolations
    destroy            Destroy Terraform-managed infrastructure
    env                Workspace management
    fmt                Rewrites config files to canonical format
    get                Download and install modules for the configuration
    graph              Create a visual graph of Terraform resources
    import             Import existing infrastructure into Terraform
    init               Initialize a Terraform working directory
    login              Obtain and save credentials for a remote host
    logout             Remove locally-stored credentials for a remote host
    output             Read an output from a state file
    plan               Generate and show an execution plan
    providers          Prints a tree of the providers used in the configuration
    refresh            Update local state file against real resources
    show               Inspect Terraform state or plan
    taint              Manually mark a resource for recreation
    untaint            Manually unmark a resource as tainted
    validate           Validates the Terraform files
    version            Prints the Terraform version
    workspace          Workspace management


All other commands:
    0.12upgrade        Rewrites pre-0.12 module source code for v0.12
    debug              Debug output management (experimental)
    force-unlock       Manually unlock the terraform state
    push               Obsolete command for Terraform Enterprise legacy (v1)
    state              Advanced state management

How to Install Terraform on Ubuntu/Debian using APT

Add the Hashicorp signing key in Ubuntu/Debian

curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -

Add the Hashicorp official apt reposity

sudo apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main"

Install the latest version of terraform on ubuntu/terraform

sudo apt install terraform

To check current and all versions of terraform

apt policy terraform

select the specific terraform version and install it

sudo apt install terraform=0.14.0

Conclusion

In this article, We have Covered How to Install Terraform on Ubuntu, configured terraform, check terraform version and Terraform Commands.

Related Articles

How to Install Ansible on Ubuntu 18.04/16.04 LTS

Creating EC2 Instance using Terraform

How to Install Terraform on Linux

How to Create VPC in AWS using Terraform

Reference:

Terraform Official Guide

FOSS TechNix

FOSS TechNix (Free,Open Source Software's and Technology Nix*) founded in 2019 is a community platform where you can find How-to Guides, articles for DevOps Tools,Linux and Databases.

1 thought on “How to Install Terraform on Ubuntu 20.04/18.04/16.04 LTS”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Share via
Copy link
Powered by Social Snap