December 2018
Beginner
826 pages
22h 54m
English
SSH to centos1 and download both Terraform and Packer:
$ vagrant ssh centos1$ curl -O https://releases.hashicorp.com/terraform/0.11.10/terraform_0.11.10_linux_amd64.zip$ curl -O https://releases.hashicorp.com/packer/1.3.2/packer_1.3.2_linux_amd64.zip
Now, we need to unzip these binaries, so first install the appropriate tool. Then, unzip both of our applications and move them to /usr/local/bin/:
$ sudo yum install unzip -y$ unzip packer_1.3.2_linux_amd64.zip $ unzip terraform_0.11.10_linux_amd64.zip$ sudo mv terraform /usr/local/bin/$ sudo mv packer /usr/local/bin/