generally speaking, if I create a resource via Pul...
# general
n
generally speaking, if I create a resource via Pulumi, then go delete that resource via, say, that AWS console, upon the next run of
pulumi up
would I expect that resource to be re-created and all dependent properties/resources updated with new values after that resource’s re-creation?
b
you'll need to refresh,
pulumi up -r
n
ah thanks
e
thanks