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

Install Terraform on Ubuntu (shell script)

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
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 :: homebrew redis install 
Shell :: git remove all pdf files 
Shell :: how to branch from a branch in git 
Shell :: docker install ubuntu command line 
Shell :: sudo apt-get ignore warning 
Shell :: uniq bash sort 
Shell :: install packages from pipfile 
Shell :: generate certificate ssl 
Shell :: git ignore by file extension 
Shell :: git pull with ssh 
Shell :: aws s3 download file 
Shell :: env variable for access key and secret key in terraform 
Shell :: install aws cli version 2 
Shell :: remove frmo staging git 
Shell :: service redis restart 
Shell :: git showing ignored file modified 
Shell :: install termius ubuntu 
Shell :: save docker update container state 
Shell :: how to install react spring with typescript 
Shell :: git change branch 
Shell :: list only directories in bash 
Shell :: add user via drush drupal 8 
Shell :: fedora microsoft font 
Shell :: chmod 400 in powershell 
Shell :: gem install rails version 
Shell :: how to setup vim plugins 
Shell :: ubuntu not showing video thumbnails 
Shell :: how to mount windows folder on ubuntu 
Shell :: Hello, World! 
Shell :: change time linux 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =