https://pulumi.com logo
b

breezy-kangaroo-6997

08/09/2023, 11:20 AM
i have one account with pulumi in cloud, can i copy the stack to other account
e

echoing-dinner-19531

08/09/2023, 1:58 PM
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

breezy-kangaroo-6997

08/10/2023, 3:30 PM
thanks 🙂