Terraform file

This file is used to manage the providers (aka the plugins you install) & the version of terraform you are using.

terraform.tf

terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 5.92"
    }
  }

  required_version = ">= 1.2"
}