1. Create the following file with name something like aws.tr

provider “aws” {
access_key = “Your Access Key here”
secret_key = “Your Secret key here”
region     = “your region preferred”
}
resource “aws_instance” “terraform” {
ami           = “your ami id here”
instance_type = “t2.micro”
}
run a ‘terraform apply’
Done !

Tags:

No responses yet

Leave a Reply

Your email address will not be published. Required fields are marked *

Recent Comments