mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
15 lines
328 B
Terraform
15 lines
328 B
Terraform
|
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
|
||
|
}
|
||
|
}
|