This message was deleted.
# general
s
This message was deleted.
d
You can do this through the console: https://www.pulumi.com/blog/stack-transfers/
l
To use your personal namespace rather than your organization one, either remove the organization prefix, or use your account name as the prefix. For example,
Copy code
pulumi stack select dev
pulumi stack select myaccount/dev # same as previous line
So if you want to destroy all the resources in a particular org stack, then recreate them in a personal stack (which has pretty much the same result as Anthony's more powerful technique above), you could do this:
Copy code
pulumi stack select myorg/dev
pulumi destroy
pulumi stack select dev
pulumi up
All of this may require creating stacks, in the normal way.