Merge branch 'master' of https://github.com/github/super-linter into AddTS

This commit is contained in:
Lucas Gravley 2020-04-02 13:06:20 -05:00
commit fd0693c998
4 changed files with 3 additions and 6 deletions

View file

@ -1,4 +1,4 @@
resource "aws_instance" "bad" {
ami = "ami-0ff8a91507f77f867"
instance_type = "t.2xlarge" # invalid type!
instance_type = # invalid type!
}

View file

@ -1,3 +0,0 @@
provider "aws" {
region = "us-east-1"
}

View file

@ -1,7 +1,7 @@
// https://github.com/terraform-linters/tflint/blob/master/docs/guides/config.md
config {
module = true
deep_check = true
deep_check = false
force = false
// aws_credentials = {
@ -20,7 +20,7 @@ config {
}
rule "aws_instance_invalid_type" {
enabled = true
enabled = false
}
rule "aws_instance_previous_type" {