This message was deleted.
# getting-started
s
This message was deleted.
c
pulumi refresh
before
pulumi up
to detect drift
r
Thanks. I will try that. I'm just used to not needing to do any sort of refresh with Terraform
e
Yeh this is just a difference in default's. Terraform defaults to doing a refresh before every operation, pulumi doesn't. Doing it is slightly safer, not doing it is a lot faster. You can either call
pulumi refresh
or
pulumi up --refresh
or add
options: refresh: true
to your Pulumi.yaml file.
r
Ok, great! Thanks for the details on the options!