Hello - when I call `pulumi.All(a, b, c).ApplyT(my...
# golang
q
Hello - when I call
pulumi.All(a, b, c).ApplyT(myFunc)
and
c
is a pulumi secret, the resulting output of
ApplyT
is also a secret, right? This doc talks about
ApplyT()
but not
All()
b
Yes, that should be the case. It'll transitively preserve it.
q
perfect, thanks 🙂