Installation

Please refer official documentation for latest changes and installation

Azure Cli should be installed in local system to use Azure resources via API

sudo apt update && sudo apt install -y gnupg software-properties-common
Install HashiCorp GPG key
wget -O- https://apt.releases.hashicorp.com/gpg | \
gpg --dearmor | \
sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
Verify the key's fingerprint.
gpg --no-default-keyring \
--keyring /usr/share/keyrings/hashicorp-archive-keyring.gpg \
--fingerprint
Add the official HashiCorp repository to your system.
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
Download the package from HashiCorp.
sudo apt update
Install Terraform
sudo apt install terraform
Verify Installation
terraform -help

VS Code Extension Installation

Last updated