github.com/paultyng/terraform@v0.6.11-0.20180227224804-66ff8f8bed40/command/test-fixtures/validate-valid/main.tf (about)

     1  variable "var_with_escaped_interp" {
     2    # This is here because in the past it failed. See Github #13001
     3    default = "foo-$${bar.baz}"
     4  }
     5  
     6  resource "test_instance" "foo" {
     7      ami = "bar"
     8  
     9      # This is here because at some point it caused a test failure
    10      network_interface {
    11        device_index = 0
    12        description = "Main network interface"
    13      }
    14  }