<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Installation on Terraform Pilot</title><link>https://www.terraformpilot.com/categories/installation/</link><description>Recent content in Installation on Terraform Pilot</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><lastBuildDate>Mon, 13 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.terraformpilot.com/categories/installation/feed.xml" rel="self" type="application/rss+xml"/><item><title>Install Terraform on Amazon Linux 2023: Step-by-Step Guide</title><link>https://www.terraformpilot.com/articles/install-terraform-amazon-linux-2023/</link><pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate><guid>https://www.terraformpilot.com/articles/install-terraform-amazon-linux-2023/</guid><description>Amazon Linux 2023 uses dnf (not yum) and doesn&amp;rsquo;t include amazon-linux-extras. Here&amp;rsquo;s how to install Terraform on AL2023 — whether on an EC2 instance, ECS container, or local development.
Method 1: HashiCorp Repository (Recommended) # Install dnf config-manager sudo dnf install -y dnf-plugins-core # Add HashiCorp repository sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo # Install Terraform sudo dnf install -y terraform # Verify terraform version # Terraform v1.10.0 Method 2: Manual Binary Download # Download latest version TERRAFORM_VERSION=&amp;#34;1.</description></item><item><title>Install Terraform with tfenv: Manage Multiple Terraform Versions</title><link>https://www.terraformpilot.com/articles/install-terraform-tfenv/</link><pubDate>Mon, 13 Apr 2026 00:00:00 +0000</pubDate><guid>https://www.terraformpilot.com/articles/install-terraform-tfenv/</guid><description>tfenv is a Terraform version manager — like nvm for Node.js or pyenv for Python. It lets you install multiple Terraform versions and switch between them per project. Essential when you maintain projects on different Terraform versions.
Why tfenv? Without tfenv:
# Project A needs Terraform 1.7 # Project B needs Terraform 1.10 # You can only have one version installed terraform version # 1.10.0 — Project A breaks With tfenv:</description></item></channel></rss>