I previously created some secrets using `pulumi co...
# general
e
I previously created some secrets using
pulumi config set --secret …
Now I want to remove those so I can run the stack from a different location. Just clearing them out of my local config file didn’t seem to do anything
h
Did you try
pulumi config rm <key>
?
e
I did, but running stack on a different machine still compains
h
Try
pulumi config refresh
to update the new machine
e
thanks, will try that. Running in a pipeline now, so I may need a new step for refresh
👍 1
thanks the refresh seemed to help!
h
Glad it worked!