🧱Configuring Infrastructure with Terraform
📁Terraform Configuration File:
Create a Terraform configuration file to define a resource of AWS EC2 instance.
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.43.0"
}
}
}
provider "aws" {
regi...
vivek0007.hashnode.dev2 min read