Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
import-provider-locals
/
main.tf
blob: a83512ccd98e5240eaf4ae7881920a633ab6f16e [
file
] [
log
] [
blame
]
variable
"foo"
{}
locals
{
baz
=
"baz-${var.foo}"
}
provider
"aws"
{
foo
=
"${local.baz}"
}
resource
"aws_instance"
"foo"
{
id
=
"bar"
}