I made some changes to my pulumi config, and it sa...
# general
m
I made some changes to my pulumi config, and it said it needed to replace an AWS VPC. That failed, because of dependent resources. I’ve removed all of the resources from my config now – but when doing
pulumi up
, it starts off with
completing deletion from previous update
and tries to delete the VPC, so it never deletes the dependent resources. How do I get pulumi to delete the other resources first, so it can complete deleting the VPC?
q
You may need to
pulumi stack export
and remove the pending operation from the JSON file, then reimport it with p`ulumi stack import`