Sign in
third-party-mirror
/
terraform
/
ac80cb5598bbf5c492440f8a92ba93de6ad8f2d3
/
.
/
v1.13.3
/
internal
/
command
/
testdata
/
test
/
nested_unknown_values
/
main.tf
blob: 6c7977cff7778ad036c58b0ac175abb1b7f69811 [
file
] [
log
] [
blame
]
variable
"input"
{
type
=
object
({
one
=
string
,
two
=
string
,
})
}
resource
"test_resource"
"resource"
{
value
=
var
.
input
.
two
}
output
"one"
{
value
=
test_resource
.
resource
.
id
}
output
"two"
{
value
=
test_resource
.
resource
.
value
}