mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
09b571b1b0
* fix: support tflint relative module references * chore: add test for relative module imports * chore: add terraform binary * chore: move tests * chore: add newlines to tests * chore: add newlines to tests * refactor: move terraform get * refactor: put terraform get back where it was Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
14 lines
328 B
HCL
14 lines
328 B
HCL
resource "aws_instance" "good" {
|
|
ami = "ami-0ff8a91507f77f867"
|
|
instance_type = "t2.small"
|
|
associate_public_ip_address = false
|
|
|
|
vpc_security_group_ids = ["sg-12345678901234567"]
|
|
metadata_options {
|
|
http_endpoint = "disabled"
|
|
}
|
|
|
|
ebs_block_device {
|
|
encrypted = true
|
|
}
|
|
}
|