https://pulumi.com logo
Title
d

delightful-camera-97029

04/19/2023, 5:30 AM
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

cuddly-computer-18851

04/19/2023, 6:30 AM
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

strong-helmet-83704

04/19/2023, 6:34 AM
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

delightful-camera-97029

04/19/2023, 7:44 AM
I see thanks
got it