c12s-kubespray/tests/scripts/terraform_install.sh

7 lines
260 B
Bash
Raw Normal View History

2019-05-02 19:26:19 +00:00
#!/bin/bash
set -euxo pipefail
apt-get install -y unzip
curl https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip > /tmp/terraform.zip
unzip /tmp/terraform.zip && mv ./terraform /usr/local/bin/ && terraform --version