Created
March 28, 2016 21:50
-
-
Save josh-padnick/3fa21bff2b8054a7770f to your computer and use it in GitHub Desktop.
Auto-update to latest version of Terraform
This file contains 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
#!/bin/bash | |
LATEST_RELEASE=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest | jq --raw-output '.tag_name' | cut -c 2-) | |
if [[ ! -e ${LATEST_RELEASE} ]]; then | |
echo "Installing Terraform ${LATEST_RELEASE}..." | |
rm terraform-* | |
rm terraform | |
wget https://releases.hashicorp.com/terraform/${LATEST_RELEASE}/terraform_${LATEST_RELEASE}_linux_amd64.zip | |
unzip terraform_${LATEST_RELEASE}_linux_amd64.zip | |
rm terraform_${LATEST_RELEASE}_linux_amd64.zip | |
touch ${LATEST_RELEASE} | |
else | |
echo "Latest Terraform already installed." | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment