Created
April 10, 2019 09:20
-
-
Save emmanuelnk/f27c1b66c067b6e6e4d1b8037a4a9259 to your computer and use it in GitHub Desktop.
Install Terraform on 64 bit Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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