Is there a sane way I can migrate from the Cloud R...
# google-cloud
l
Is there a sane way I can migrate from the Cloud Run v1 API to the Cloud Run v2 API without having to destroy and recreate my service? (the URL is referenced in a lot of places and I'd like to avoid having to update it everywhere)
Well, I just did it the insane way: Remove the old version of the service (and all dependent resources) from the Pulumi stack via
pulumi stack delete
and then use
pulumi import
to import it as the v2 version