Skip to content

Instantly share code, notes, and snippets.

@atulkamble
Created August 10, 2021 13:42
Show Gist options
  • Save atulkamble/a1be3bfbecc1c9cd90d34a4c223fcc50 to your computer and use it in GitHub Desktop.
Save atulkamble/a1be3bfbecc1c9cd90d34a4c223fcc50 to your computer and use it in GitHub Desktop.
Install & Verify Terraform in LInux
sudo apt-get update && sudo apt-get install -y gnupg software-properties-common curl
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update && sudo apt-get install terraform
terraform -help
terraform -help plan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment