Sign in
third-party-mirror
/
terraform
/
ac80cb5598bbf5c492440f8a92ba93de6ad8f2d3
/
.
/
v1.13.3
/
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}}"
]
}