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

  1. #!/bin/bash
  2. set -euxo pipefail
  3. apt-get install -y unzip
  4. curl https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip > /tmp/terraform.zip
  5. unzip /tmp/terraform.zip && mv ./terraform /usr/local/bin/ && terraform --version