Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 614 Bytes

File metadata and controls

32 lines (20 loc) · 614 Bytes

Install Terraform

Terraform manages infrastructure as code (IaC).

Steps:

  1. Download the Terraform binary:

    curl -fsSL https://releases.hashicorp.com/terraform/1.5.7/terraform_1.5.7_linux_amd64.zip -o terraform.zip
  2. Install the unzip tool (if not installed):

    sudo apt install -y unzip
  3. Extract and move the binary:

    unzip terraform.zip
    sudo mv terraform /usr/local/bin/
  4. Verify installation:

    terraform --version