terraform/aws.tf

10 lines
176 B
Terraform
Raw Normal View History

2023-10-23 05:18:55 +00:00
provider "aws" {}
resource "aws_instance" "myec2" {
ami = "ami-041feb57c611358bd"
instance_type = "t2.micro"
tags = {
"Name" = "My EC2 - Test LOCAL"
}
}