Building AWS Infrastructure Using Infrastructure as Code (IaC)
Step 1: Create a VPC (Virtual Private Cloud)
Create a terraform.tf where you have to pass on AWS provider details.
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
...
mizanf123.hashnode.dev5 min read