Browse Source
Update packet.md (#5963 )
The Terraform installation part states that is for CentOS 7, but the echo command refers to OS X binary. Updated the echo command to use the Linux version.
pull/5909/head
Rishi
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
docs/packet.md
@ -38,7 +38,7 @@ Terraform is required to deploy the bare metal infrastructure. The steps below a
Grab the latest version of Terraform and install it.
Grab the latest version of Terraform and install it.
```bash
```bash
echo "https://releases.hashicorp.com/terraform/$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')/terraform_$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')_darwin _amd64.zip"
echo "https://releases.hashicorp.com/terraform/$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')/terraform_$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')_linux _amd64.zip"
sudo yum install unzip
sudo yum install unzip
sudo unzip terraform_0.12.24_linux_amd64.zip -d /usr/local/bin/
sudo unzip terraform_0.12.24_linux_amd64.zip -d /usr/local/bin/
```
```