Completely unrelated : if I want to reference a co...
# general
a
Completely unrelated : if I want to reference a config value inside one of my lambda, I’m forced to use env variables ?
w
No - you should be able to just reference it directly.
Copy code
let config = new pulumi.Config();
let value = config.get("value");
cloud.timer.daily("tick", () => {
  console.log(value);
});
Is that your use case?
a
I need to look how this is serialized
but yeah basically thanks luke
oh ok still printed as [secret] in logs
nice