Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install terraform in ubuntu 18.04

wget https://releases.hashicorp.com/terraform/0.12.24/terraform_0.12.24_linux_amd64.zip
unzip terraform_0.12.24_linux_amd64.zip
mv terraform /usr/local/bin/
terraform version# Terraform v0.12.24
Comment

ubuntu install terraform

# Ensure that your system is up to date, and you have the gnupg, software-properties-common, and curl packages installed. You will use these packages to verify HashiCorp's GPG signature, and install HashiCorp's Debian package repository.
sudo apt-get update && sudo apt-get install -y gnupg software-properties-common curl

# Add the HashiCorp GPG key.
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -

# Add the official HashiCorp Linux repository.
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"

# Update to add the repository, and install the Terraform CLI.
sudo apt-get update && sudo apt-get install terraform
Comment

how to install terraform on Ubuntu/Debian

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
Comment

terraform install on ubuntu

# Hashicorp GPG Key
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -

# Hashicorp Linux repository
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"

# Update and install
sudo apt-get update && sudo apt-get install terraform

# Verify
terraform -help

# Tab completion
terraform -install-autocomplete

Comment

PREVIOUS NEXT
Code Example
Shell :: how to check if your linux Server Is Under DDoS Attack 
Shell :: npm websocket 
Shell :: linux blackeye 
Shell :: uninstall gem 
Shell :: dollar to pkr 
Shell :: remove git remote 
Shell :: change remote to use ssh git command 
Shell :: stop venv 
Shell :: open image from terminal in ubuntu 18 
Shell :: find pip (s) path 
Shell :: yarn install netlify 
Shell :: bash go to home directory 
Shell :: find how many lines in a file linux 
Shell :: npm github pages 
Shell :: macos kill process on port 
Shell :: Unable to install APK to device. Please make sure the Android SDK is installed and is properly configured in the Editor. 
Shell :: chown specific user linux 
Shell :: display group of username mac 
Shell :: how to commit single file in git 
Shell :: installing a downloaded package in ubuntu 
Shell :: unzip ubuntu 
Shell :: firebase deploy with token 
Shell :: install docker ubuntu 
Shell :: linux show alias function 
Shell :: git view changes in commit 
Shell :: git lfs install 
Shell :: download calibre ubuntu 
Shell :: how to go back to the last directory in linux 
Shell :: install pgadmin4 ubuntu 20.04 
Shell :: how to install postgresql 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =