https://pulumi.com logo
a

adventurous-jordan-10043

09/25/2018, 12:14 PM
Completely unrelated : if I want to reference a config value inside one of my lambda, I’m forced to use env variables ?
w

white-balloon-205

09/25/2018, 1:25 PM
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

adventurous-jordan-10043

09/25/2018, 1:27 PM
I need to look how this is serialized
but yeah basically thanks luke
oh ok still printed as [secret] in logs
nice