This message was deleted.
# general
s
This message was deleted.
b
I'm not sure I understand your issue. Just set
PULUMI_CONFIG_PASSPHRASE
to the passphrase you've initially set up and you'll be good to go
g
Its not prompting me for the 2nd time when I do pulumi up.
b
It should not prompt you, it only does so when initializing
g
so can you help me with the steps to resolve this?
b
I don't understand your issue
do you know how to set environment variables?
g
no. I know how to set them on windows.
b
which OS are you on?
g
mac
b
Assuming you're using bash, and your password is
foo
, you can either use the password on every command:
PULUMI_CONFIG_PASSPHRASE=foo pulumi up
or set it for the current shell:
Copy code
export PULUMI_CONFIG_PASSPHRASE=foo
pulumi up
g
okay will try that.
b
if you want to set it permanently, you'll have to add it to your
bash_profile
, but I would highly recommend reading up on environment variables and bash
g
Thanks
👍 1
Its working Thank you.
😃 1