Are there any --live-dangerously kind of options I...
# general
r
Are there any --live-dangerously kind of options I can use during dev to skip remote checks and speed up planning?
v
I like
pulumi up --non-interactive --yes
, is that what you’re looking for?
r
No, looking for something that assumes lack of drift in remote state to speed up planning
v
Ah got it. Sorry I’m not sure about that one
b
Maybe
pulumi up --skip-preview
?
Whereas
--yes
will automatically approve the preview,
-f
or
--skip-preview
doesn't do it at all. That said if you are not running a
pulumi refresh
beforehand or you're not doing
pulumi up --refresh
than you could say that you are "assuming lack of drift" because your deployment makes the assumption the state is accurate when determining necessary changes