k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
260 B
6 lines
260 B
#!/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
|