Install terraform in Linux
Step by step guide to install terraform in different operating systems
- Linux
In Linux, you can use wget and install terraform
TER_VER=`curl -s https://api.github.com/repos/hashicorp/terraform/releases/latest | grep tag_name | cut -d: -f2 | tr -d \”\,\v | awk ‘{$1=$1};1’` wget https://releases.hashicorp.com/terraform/${TER_VER}/terraform_${TER_VER}_linux_amd64.zip
Next, unzip the file
Extract the downloaded archive:
$ unzip…