Sunday, August 6, 2023

How to install Terraform on RedHat Linux OS | Install Terraform on CentOS/Red Hat Linux(RHEL) | TerraForm Installation on Linux

 

Terraform is an open source infrastructure as code (IaC) tool developed by HashiCorp. It allows you to define, manage, and provision infrastructure resources in a cloud or on-premises environment using declarative configuration files. Terraform maintains the state of the infrastructure in a state file. 

Please find the steps for installing Terraform On Red Hat Enterprise Linux or CentOS in AWS cloud.

Pre-requisites:

Red Hat EC2 instance is already up and running

Go to HashiCorp Website

Copy steps for Linux under CentOS/RHEL


sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
sudo yum -y install terraform

Check Terraform version
terraform -version


this should show version of Terraform. As of Aug 3, 2023 version was
 
Terraform v1.5.4

Please watch the above steps in action below:

No comments:

Post a Comment

How to Configure GitHub Advanced Security for Azure DevOps | How to Perform Security scan for Azure Repos using GitHub Advanced Security

GitHub Advanced Security for Azure DevOps brings the  secret scanning, dependency scanning  and  CodeQL code scanning  solutions already ava...