Terraform is an infrastructure as a code tool used for provisioning infrastructure on most of the cloud platforms.
- Open source
- Can setup entire infrastructure by writing Terraform scripts/templates.
- Based on declarative model
- Uses Hashi Corp Language(HCL) which is JSON format
You can watch this on YouTube channel:
Please find steps for installing Terraform On Enterprise Red Hat Linux.
Create a working directory
sudo mkdir -p /opt/terraform
cd /opt/terraform
Install wget utility
sudo yum install wget -y
Install wget utility
sudo yum install wget -y
Download Terraform from Hasicorp website
sudo wget https://releases.hashicorp.com/terraform/1.0.5/terraform_1.0.5_linux_amd64.zip
Install unzip utility
sudo yum install unzip -y
sudo yum install unzip -y
Unzip Terraform Zip file
sudo unzip terraform_1.0.5_linux_amd64.zip
Add terraform to PATH
sudo mv /opt/terraform/terraform /usr/bin/
terraform -version
Terraform v1.0.5
on linux_amd64
this should show version of Terraform.
No comments:
Post a Comment