github.com/LorbusChris/terraform@v0.11.12-beta1/backend/local/test-fixtures/plan-vars/main.tf (about)

     1  variable "foo" {}
     2  
     3  resource "test_instance" "foo" {
     4      foo = "${var.foo}"
     5  
     6      # This is here because at some point it caused a test failure
     7      network_interface {
     8        device_index = 0
     9        description = "Main network interface"
    10      }
    11  }