Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
cloud
/
testdata
/
apply-json-with-outputs
/
main.tf
blob: d801668459dcc32312059acfa3b221ab05566e9b [
file
] [
log
] [
blame
]
resource
"null_resource"
"foo"
{}
output
"simple"
{
value
=
[
"some"
,
"list"
]
}
output
"secret"
{
value
=
"my-secret"
sensitive
=
true
}
output
"complex"
{
value
=
{
keyA
=
{
someList
=
[
1
,
2
,
3
]
}
keyB
=
{
someBool
=
true
someStr
=
"hello"
}
}
}