Sign in
third-party-mirror
/
terraform
/
ac80cb5598bbf5c492440f8a92ba93de6ad8f2d3
/
.
/
v1.13.3
/
internal
/
command
/
testdata
/
apply-sensitive-output
/
main.tf
blob: 87994ae9fcd60642ed12ce3ca5be81842752d3d1 [
file
] [
log
] [
blame
]
variable
"input"
{
default
=
"Hello world"
}
output
"notsensitive"
{
value
=
"${var.input}"
}
output
"sensitive"
{
sensitive
=
true
value
=
"${var.input}"
}