2017-03-29 17:34:45 +02:00
|
|
|
variable "var_with_escaped_interp" {
|
|
|
|
# This is here because in the past it failed. See Github #13001
|
|
|
|
default = "foo-$${bar.baz}"
|
|
|
|
}
|
|
|
|
|
2015-11-05 15:47:08 +01:00
|
|
|
resource "test_instance" "foo" {
|
|
|
|
ami = "bar"
|
|
|
|
|
|
|
|
# This is here because at some point it caused a test failure
|
|
|
|
network_interface {
|
|
|
|
device_index = 0
|
|
|
|
description = "Main network interface"
|
|
|
|
}
|
|
|
|
}
|