Is there a way to have stack outputs that are outp...
# general
f
Is there a way to have stack outputs that are outputs but not shown at the end of
pulumi up
? Use case would be outputting a kubeconfig.
1
b
We don't have anything like this today. Do you have a sense for what code you'd want to write to indicate you have an output that you don't want shown in the UI after up? Would you expect that
pulumi stack output
would still show this (I think the answer is yes, but want to confirm).
f
I'm mostly interested in hiding it from the result of
pulumi up
. If you have a
kubeconfig
in your outputs, it will make the console output quite noisy.
w
There is a
--suppress-outputs
on
pulumi up
that will suppress all outputs. That may help here?
f
Kind of. It's useful to see outputs, especially when they change. It's just not particularly useful to see large outputs.
w
Yeah - makes sense - could you open an issue with this suggestion - would be good to discuss what kind of design could support this as a future feature.
f