You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/install/linux/install-terraform

13 lines
263 B
Bash

#!/bin/bash
ver=1.1.3
[[ -z "$GOBIN" ]] && echo "GOBIN not set" && exit 1
dir=$(mktemp -d)
cd "$dir"
echo "Now working from $dir"
curl -sSLO "https://releases.hashicorp.com/terraform/$ver/terraform_${ver}_linux_amd64.zip"
unzip -q *.zip
mv terraform "$GOBIN"