github.com/terraform-linters/tflint@v0.51.2-0.20240520175844-3750771571b6/integrationtest/bundled/basic/main.tf (about) 1 variable "instance_type" {} 2 variable "unused" { 3 type = string 4 } 5 6 resource "aws_instance" "main" { 7 count = [] == [] ? 1 : 0 8 9 instance_type = "${var.instance_type}" 10 }