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 :: chmod add execute permission to useer 
Shell :: view permissions linux 
Shell :: change display resolution on terminal 
Shell :: powershell sharepoint copy file to other site collection 
Shell :: git check current branch 
Shell :: configure static ip address linux 
Shell :: how to kill all emulator 
Shell :: expand aliases 
Shell :: git submodule push current branch to master 
Shell :: run bash script linux with sudo password 
Shell :: flatpak repo 
Shell :: uninstall utorrent buntu 
Shell :: delete command in linux 
Shell :: remove a file from a commit 
Shell :: echo venv/ .gitignore 
Shell :: uninstall specific java openjdk ubuntu 
Shell :: nvcc not working after installing cuda 
Shell :: install .net framework 3.5 from windows 
Shell :: flutter pubspec install 
Shell :: how to view hidden files in mac terminal 
Shell :: aws cli 
Shell :: ubuntu 20.04 install nginx 
Shell :: install vagrant in ubuntu 18.04 
Shell :: install screen recorder linux 
Shell :: recursive grep recursion depth 
Shell :: letsencrypt wildcard certificate certbot 
Shell :: bash call another script relative to current script 
Shell :: git change repo 
Shell :: npm -s flag 
Shell :: rename multiple files in linux 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =