Skip to content

Installing Terraform

Fawad Abbasi edited this page Nov 22, 2018 · 1 revision

Steps to install terraform on Ubuntu / Ubuntu cloud server:

1. Install unzip

    sudo apt-get install unzip

2. Download latest version of the terraform

    wget https://releases.hashicorp.com/terraform/0.11.10/terraform_0.11.10_linux_amd64.zip

3. Extract the downloaded file archive

    unzip terraform_0.11.10_linux_amd64.zip

5. Move the executable into a directory searched for executables

    sudo mv terraform /usr/local/bin/

6. Run it

    terraform --version