Skip to content

Instantly share code, notes, and snippets.

@byahia
Created January 10, 2020 12:55
Show Gist options
  • Save byahia/687ec6389348fe89d1e1de6920cb9b93 to your computer and use it in GitHub Desktop.
Save byahia/687ec6389348fe89d1e1de6920cb9b93 to your computer and use it in GitHub Desktop.
Install Terraform on Centos
TERRAFORM_VERSION="0.12.19"
sudo yum update -y
sudo wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
sudo unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin
sudo export PATH="/usr/local/bin/terraform:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment