inspec/test/integration/build/aws.tf

12 lines
179 B
Terraform
Raw Normal View History

provider "aws" {}
resource "aws_instance" "example" {
ami = "ami-0d729a60"
instance_type = "t2.micro"
tags {
Name = "Example"
X-Project = "inspec"
}
}