github.com/tetrafolium/tflint@v0.8.0/tflint/test-fixtures/nested_modules/.terraform/modules/07be448a6067a2bba065bff4beea229d/module1/resource.tf (about)

     1  variable "override" {
     2    default = "baz"
     3  }
     4  variable "no_default" {}
     5  variable "unknown" {}
     6  
     7  resource "aws_instance" "web" {
     8    ami           = "ami-b73b63a0"
     9    instance_type = "t1.2xlarge"
    10  
    11    tags {
    12      Name = "HelloWorld"
    13    }
    14  }
    15