superlint/.automation/test/terraform/good/terraform_good_1.tf
2020-08-26 23:39:56 -04:00

11 lines
272 B
HCL

resource "aws_instance" "good" {
ami = "ami-0ff8a91507f77f867"
instance_type = "t2.small"
associate_public_ip_address = false
vpc_security_group_ids = ["sg-12345678901234567"]
ebs_block_device {
encrypted = true
}
}