When doing a `pulumi preview --diff --refresh`, is...
# general
l
When doing a
pulumi preview --diff --refresh
, is there a way to hide the
refresh
output for every resource? I'd like to perform a refresh, but I really don't need to see that resource in the diff if pulumi isn't going to change anything
l
This should work:
Copy code
pulumi refresh 2>&1 >/dev/null
pulumi preview --diff
l
Oh, I didn't think of separating it into two steps, smart!
l
Boxes are there for thinking outside of 😉