mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
11 lines
179 B
HCL
11 lines
179 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_instance" "example" {
|
|
ami = "ami-0d729a60"
|
|
instance_type = "t2.micro"
|
|
|
|
tags {
|
|
Name = "Example"
|
|
X-Project = "inspec"
|
|
}
|
|
}
|