heya, I have a question about stack. If I have a s...
# general
d
heya, I have a question about stack. If I have a stack that create several AWS resources, what will happen if during pulumi up, one of the resources fails to deploy? will it fail all of them? or some will succed? thanks
c
pulumi doesn't "rollback" failed *up*s to the state will track the resources which succeeded, and those that failed. The overall command will fail.
s
Everything else should succeed. Running another ‘up’ should catch the failed resources and re-apply them. It depends on HOW it fails… sometimes a refresh is required if the state is lost due to network or other failure
d
I see thanks
got it