Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 KB | None | 0 0
  1. # Install terraform
  2. sudo curl -O https://releases.hashicorp.com/terraform/0.11.5/terraform_0.11.5_linux_amd64.zip
  3. sudo apt-get install unzip
  4. sudo mkdir /bin/terraform
  5. sudo unzip terraform_0.11.5_linux_amd64.zip -d /usr/local/bin/
  6. terraform --version
  7. rm -rf terraform_0.11.5_linux_amd64.zip
  8.  
  9. # Clone git repo
  10. git clone https://github.com/linuxacademy/content-terraform
  11.  
  12. # add to main.tf to make docker work
  13. provider "docker" {
  14.   version = "1.1"
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement