Infrastructure as Code (IaC)
Introducing Terraform
Installing Terraform
terraform --version
on the CLI.

We will be primarily using Visual Studio Code Editor to work with Terraform, as it’s the best experience for writing such scripts. That said, ensure that you have the following extensions installed to improve your developer experience.
terraform {
required_version = "~> 1.9.5"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.64.0"
}
}
}
provider "aws" {
region = "us-east-1"
default_tags {
tags = {
Environment = "staging"
Owner = "Mukesh Murugan"
Project = "codewithmukesh"
}
}
}