Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@phillipsj
Last active December 6, 2018 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phillipsj/7f701dd51d62d564fe8d1c3c4b704ba1 to your computer and use it in GitHub Desktop.
Save phillipsj/7f701dd51d62d564fe8d1c3c4b704ba1 to your computer and use it in GitHub Desktop.
Terraform installer for Linux.
#!/bin/bash
echo "Fetching Terraform..."
wget -O terraform.zip https://releases.hashicorp.com/terraform/0.11.10/terraform_0.11.10_linux_amd64.zip
echo "Unzipping Terraform..."
unzip terraform.zip
echo "Making Terraform executable..."
chmod +x ./terraform
echo "Moving terraform to /usr/local/bin..."
sudo mv ./terraform /usr/local/bin/terraform
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment