https://pulumi.com logo
b

bitter-dentist-28132

09/11/2019, 8:59 PM
if an output (i.e. an
export
) is
undefined
, does that make it not appear in the list of outputs? i'm trying to track down an error where sometimes one of my deployments is missing an image. i'm exporting a hash of
{app1: image1, app2: image2}
, and i see in the output i only have
{app1: image1}
, when i would have expected
{app1: image1, app2: undefined}
if the variable was undefined.
g

gorgeous-egg-16927

09/11/2019, 9:01 PM
That’s the behavior I’ve seen. Not 100% sure if that’s intentional
b

bitter-dentist-28132

09/11/2019, 9:02 PM
ok, thanks for the confirmation
do you know if a
console.log
would exhibit different behaviour?