How to Install Terraform on Ubuntu Server 22.04

Опубликовано: 04 Октябрь 2024
на канале: MivoCloud
428
37

Terraform is an open-source infrastructure automation tool that allows you to deploy and manage hundreds of servers via a command-line interface. With Terraform, you can build, change and manage your infrastructure by defining configurations in a human-readable file. It supports many cloud providers, such as AWS, Azure, GCP, and Alibaba cloud. Terraform allows you to automate and provision servers, databases, firewalls, load balancers, and more.

This tutorial will explain how to install Terraform on Ubuntu 22.04.

Useful Links:
VPS/VDS - https://www.mivocloud.com/
Terraform - https://www.terraform.io/

WARNING - ANGLED BRACKETS AREN'T ALLOWED IN DESCRIPTION SO BE ATTENTIVE TO THE VIDEO IN NANO EDITOR

Commands Used:
apt install -y gnupg software-properties-common curl -y
curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add -
apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
apt install terraform -y
terraform --version

wget https://releases.hashicorp.com/terraf...
unzip terraform_1.4.7_linux_amd64.zip
mv terraform /usr/bin/
terraform --version

terraform -install-autocomplete
source ~/.bashrc
terraform

mkdir aws
cd aws
nano main.tf

Provider
provider "aws" {
access_key = ""
secret_key = ""
region = "us-west-1"
}

terraform init
terraform plan
terraform apply
terraform destroy