DevOps, Day - 64
Oct 22, 2023 · 1 min read · Create a main.tf file and add the following Terraform configuration
provider "aws" {
region = "us-east-1" # Change to your desired region
}
resource "aws_instance" "aws_ec2_test" {
ami = "ami-08c40ec9ead489470" # Change to your desire...