Skip to content

Instantly share code, notes, and snippets.

@emmanuelnk
Created April 10, 2019 09:20
Show Gist options
  • Save emmanuelnk/f27c1b66c067b6e6e4d1b8037a4a9259 to your computer and use it in GitHub Desktop.
Save emmanuelnk/f27c1b66c067b6e6e4d1b8037a4a9259 to your computer and use it in GitHub Desktop.
Install Terraform on 64 bit Linux
# 0.XX.XX is the terraform version you need
wget https://releases.hashicorp.com/terraform/0.XX.XX/terraform_0.XX.XX_linux_amd64.zip -P ~/Downloads/terraform/
cd ~/Downloads/terraform && unzip terraform_0.11.8_linux_amd64.zip && cd terraform
sudo mv terraform /usr/local/bin/
nano ~/.bashrc
export PATH="$PATH:/usr/local/bin/terraform"
source ~/.bashrc
# then from anywhere
terraform --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment