mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
6 lines
179 B
Terraform
6 lines
179 B
Terraform
|
variable "foo" {
|
||
|
# This should be considered valid since the sequence is escaped and is
|
||
|
# thus not actually an interpolation.
|
||
|
default = "foo bar $${aws_instance.foo.bar}"
|
||
|
}
|