In order to move my state from pulumi to S3, are t...
# general
c
In order to move my state from pulumi to S3, are these the steps required?
Copy code
Pulumi stack export --file stack.json
Pulumi login <s3://bucketName>
Pulumi stack import --file stack.json
okay, here are the steps I had to go through to get S3 working for a migration from pulumi to S3: -
pulumi stack export --file stack.json
- copy the stack.json to the S3 bucket (manually) -
pulumi logout
&
pulumi login <s3://bucketname>
-
pulumi stack select
- this prompted me to create a passphrase for a new stack it had me create - I was then able to run
pulumi preview
, it found my stack, but it now wants to create all the resources that already exist
👍 1
I guess this will be much cleaner for stacks that start off on S3
142 Views