Updated terraform version.

This commit is contained in:
2020-01-01 19:50:57 +00:00
parent a62839ef23
commit 196a78a66a

View File

@ -66,8 +66,7 @@ This guide will walk through setting up [[https://en.wikipedia.org/wiki/Windows_
# Work from our downloads folder
cd ~/Downloads
# Download the latest release (check if newer is available)
echo Downloading latest release deb from github
# Download the latest release from github
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
@ -131,13 +130,13 @@ This guide will walk through setting up [[https://en.wikipedia.org/wiki/Windows_
#+NAME: Install hashicorp terraforms
#+BEGIN_SRC shell
# Download the binary
wget 'https://releases.hashicorp.com/terraform/0.12.9/terraform_0.12.9_linux_amd64.zip'
wget 'https://releases.hashicorp.com/terraform/0.12.18/terraform_0.12.18_linux_amd64.zip'
# Unzip it
unzip *.zip
# Move the binary to path
sudo mv terraform /usr/bin/
sudo mv terraform /usr/local/bin/
# Clean up
rm *amd64.zip