This message was deleted.
# general
s
This message was deleted.
t
Copy code
❯ pulumi config
KEY                  VALUE
hcloud:token         [secret]
hetznerdns:apitoken  [secret]
sendinblue:smtp      [secret]
It seems to be in my config, so I'm not sure why I need to refer to it with my stack (my stack is called infra), or why it doesn't show up in the pulumi web app
I changed the key to something without
:
in it and when pulumi up succeeded I now see
e
":" is used for namespacing in the config system, and the default namespace (used by config.require etc) is your project name.
If you make an explicit config object you can tell it what namespace to use:
new pulumi.Config("sendinblue");
🙌 1