superlint/.automation/test/terraform/good/terraform_good_1.tf

12 lines
272 B
Terraform
Raw Normal View History

2020-03-12 11:38:07 -04:00
resource "aws_instance" "good" {
2020-08-07 10:09:40 -04:00
ami = "ami-0ff8a91507f77f867"
instance_type = "t2.small"
associate_public_ip_address = false
2020-08-26 23:39:56 -04:00
vpc_security_group_ids = ["sg-12345678901234567"]
2020-08-07 10:09:40 -04:00
ebs_block_device {
encrypted = true
}
2020-03-12 11:38:07 -04:00
}