github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/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  }