I'm having an issue with a local stack. Here's wha...
# general
f
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
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
I wasn't prompted for the passphrase after step 2