github.com/tetrafolium/tflint@v0.8.0/tflint/test-fixtures/config/config.hcl (about)

     1  config {
     2    terraform_version = "0.9.11"
     3    deep_check = true
     4  
     5    aws_credentials = {
     6      access_key = "AWS_ACCESS_KEY"
     7      secret_key = "AWS_SECRET_KEY"
     8      region     = "us-east-1"
     9    }
    10  
    11    ignore_rule = {
    12      aws_instance_invalid_type  = true
    13      aws_instance_previous_type = true
    14    }
    15  
    16    ignore_module = {
    17      "github.com/wata727/example-module" = true
    18    }
    19  
    20    varfile = ["example1.tfvars", "example2.tfvars"]
    21  }
    22  
    23  rule "aws_instance_invalid_type" {
    24    enabled = false
    25  }
    26  
    27  rule "aws_instance_previous_type" {
    28    enabled = false
    29  }