Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
command
/
testdata
/
validate-invalid
/
interpolation
/
main.tf
blob: bbb8e6978c46c6c89cb9aef20b64c717a38f0e4b [
file
] [
log
] [
blame
]
variable
"otherresourcename"
{
default
=
"aws_instance.web1"
}
variable
"vairable_with_interpolation"
{
default
=
"${var.otherresourcename}"
}
resource
"aws_instance"
"web"
{
depends_on
=
[
"${var.otherresourcename}}"
]
}