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

install terraform in linux

 wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
 echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
 sudo apt update && sudo apt install terraform
Comment

PREVIOUS NEXT
Code Example
Shell :: apt list only security updates 
Shell :: how to get list of files in a folder in batch script 
Shell :: installing composer command line 
Shell :: gcc 7 install ubuntu 
Shell :: git remove untracked files 
Shell :: minimize on click in ubuntu dock 
Shell :: docker install ubuntu 22.04 
Shell :: delete registry key powershell 
Shell :: flutter@f1 
Shell :: portainer ce install 
Shell :: Not Found The requested URL was not found on this server. Apache/2.4.41 (Ubuntu) Server at localhost Port 80 
Shell :: solana install 
Shell :: bigquery export schema json 
Shell :: show commit differences between branches git 
Shell :: change current branch git 
Shell :: linux mail delete all 
Shell :: github create branch from issue 
Shell :: varible 
Shell :: The framework needs the following extension(s) installed and loaded: intl. at SYSTEMPATHCodeIgniter.php:219 
Shell :: best linux vpn server 
Shell :: install homebrew on linux 
Shell :: install freetype globally on ubuntu 
Shell :: how to install lvm2 on ubuntu 
Shell :: bash for loop multiple statements 
Shell :: rm -rf * 
Shell :: ubuntu console png to pdf 
Shell :: make shortcut folder in windows 
Shell :: sudo rm rf command 
Shell :: change owner of directory mac terminal 
Shell :: grep lines after match 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =