Hi All, After creating a new config secret with: p...
# pulumi-cloud
d
Hi All, After creating a new config secret with: pulumi config set --secret api_key “<value>” Our program ran as expected, successfully retrieving the secret. This was all done on my local computer. Once I push up my changes to git pulled it down, my team member attempted to run the program, but it seems to be unable to find the secret. We tried “pulumi config refresh”, & “pulumi get <secret name>”. We can see that the stack has the secret in the CLI and in the yaml file, but the program errors saying the required config is empty.
a
Does your colleague have the correct stack selected? (Via
pulumi stack select
) Which programming language are you using? Are you running the same version of the programming language and Pulumi as well (
pulumi about
)? Hard to provide more advise without more information on your setup and perhaps code snippets.