I'm using pulumi to manage some firebase projects ...
# google-cloud
m
I'm using pulumi to manage some firebase projects and apps, but I seem to have gotten myself into a situation where the
gcp:firebase:AndroidApp
created was deleted via the console, and now Pulumi complains with
googleapi: Error 404: App not found.
What's the best way to resolve this? Can I force Pulumi to recreate that app?
b
Best thing to do is
pulumi state delete
on the resource that was deleted in the console
m
ok great, thanks!