i have one account with pulumi in cloud, can i cop...
# general
b
i have one account with pulumi in cloud, can i copy the stack to other account
e
You should be able to export it from one stack and import it to the other. You'll need to decrypt all the secrets to do this.
Copy code
pulumi stack export --show-secrets > stack.json
pulumi login # login to other account
pulumi stack import < stack.json
b
thanks 🙂