github.com/mcuckson/tflint@v0.8.0/integration/module/.terraform/modules/50cc94607bbbeefd1fdfb162d13f9811/template.tf (about)

     1  variable "unknown" {}
     2  
     3  variable "instance_type" {
     4    default = "t2.micro"
     5  }
     6  
     7  resource "aws_instance" "unknown" {
     8    instance_type = "${var.unknown}"
     9  }
    10  
    11  resource "aws_instance" "instance_type" {
    12    instance_type = "${var.instance_type}"
    13  }