https://pulumi.com logo
f

fierce-cpu-94517

03/04/2020, 10:00 AM
I'm having an issue with a local stack. Here's what happened: 1.
pulumi login --local
2.
pulumi stack init my-stack
(entered passphrase) 3.
aws-vault exec my-profile -- pulumi up
. got an error. some resources provisioned. 4. fixed stuff 5.
aws-vault exec my-profile -- pulumi up
. started getting
error: decrypting secret value: failed to decrypt: incorrect passphrase, please set PULUMI_CONFIG_PASSPHRASE to the correct passphrase
6. weirder:
pulumi stack ls
returns empty list of stacks what is going on?
pulumi destroy
returns the same
error: decrypting secret value: failed to decrypt...
Copy code
$ pulumi version
v1.11.1
exporting
PULUMI_CONFIG_PASSPHRASE
helped
g

gentle-diamond-70147

03/04/2020, 4:02 PM
Your passphrase is not persisted in your terminal or environment so you will be prompted for it each time you run Pulumi unless you set the
PULUMI_CONFIG_PASSPHRASE
environment variable.
f

fierce-cpu-94517

03/08/2020, 7:39 AM
I wasn't prompted for the passphrase after step 2