mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
parent
06bc3459f0
commit
edb92e93bf
4 changed files with 11 additions and 0 deletions
0
.automation/test/terraform/README.md
Normal file
0
.automation/test/terraform/README.md
Normal file
3
.automation/test/terraform/init.tf
Normal file
3
.automation/test/terraform/init.tf
Normal file
|
@ -0,0 +1,3 @@
|
|||
provider "aws" {
|
||||
region = "us-east-1"
|
||||
}
|
4
.automation/test/terraform/terraform_bad_1.tf
Normal file
4
.automation/test/terraform/terraform_bad_1.tf
Normal file
|
@ -0,0 +1,4 @@
|
|||
resource "aws_instance" "bad" {
|
||||
ami = "ami-0ff8a91507f77f867"
|
||||
instance_type = "t.2xlarge" # invalid type!
|
||||
}
|
4
.automation/test/terraform/terraform_good_1.tf
Normal file
4
.automation/test/terraform/terraform_good_1.tf
Normal file
|
@ -0,0 +1,4 @@
|
|||
resource "aws_instance" "good" {
|
||||
ami = "ami-0ff8a91507f77f867"
|
||||
instance_type = "t2.small"
|
||||
}
|
Loading…
Reference in a new issue