Last active
May 15, 2021 03:34
-
-
Save iamdylanngo/1ecdde02cc14927239986b512ab4d9b2 to your computer and use it in GitHub Desktop.
install-terraform-ubuntu-20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install terraform on ubuntu | |
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - | |
sudo apt install terraform | |
# install with specify version | |
sudo apt install terraform=0.14.0 | |
terraform version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment