Terraform components
Provider
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
# Configure the AWS Provider
provider "aws" {
region = "us-east-1"
}State

We have a few CLI tools that allows us to interact with the TFState file
Last updated