Skip to content

Instantly share code, notes, and snippets.

View atarla's full-sized avatar
🎯
Focusing

atarla

🎯
Focusing
View GitHub Profile
@atarla
atarla / main.tf
Created September 3, 2019 20:28
terraform script for basic ec2
provider "aws" {
region = "us-east-2"
}
resource "aws_instance" "example" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
tags = {
Name = "terraform-example"
}
}