is ```pulumi preview -r && pulumi up -y --...
# general
s
is
Copy code
pulumi preview -r && pulumi up -y --diff
same as
Copy code
pulumi up -y --diff -r
? What's the implication if we run pulumi up without --refresh?
q
--refresh
tells Pulumi to check if the resources under control have been modified outside of the Pulumi execution.
If you don’t do a
--refresh
and someone has modified a resource via the UI, Pulumi may not notice the change
s
thanks!