Lecture 2 || Lab 1 on to install Terraform and launch EC2 instance automatically with the help of Terraform || Praveen Kumar || Hindi/English.
Lectur 1: Introduction about Terraform : • Introduction about Terraform || Lecture 1 ...
Pari Cloud Knowledge - A YouTube channel for system administrator's/Linux/AWS/ and DevOps engineers. My aim is to spread knowledge on basics to industry level among Hindi and English people. Please like subscribe and share my videos to all.
Thank you.
#######################################################
provider "aws" {
region ="region_name"
access_key="My-access-key"
secret_key="My-secret-key"
}
resource "aws_instance" "web" {
ami = "ami-id"
instance_type = "t2.micro"
tags={
Name = "terraformserver"
}
}
#######################################################