if an output (i.e. an `export`) is `undefined`, do...
# general
b
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
That’s the behavior I’ve seen. Not 100% sure if that’s intentional
b
ok, thanks for the confirmation
do you know if a
console.log
would exhibit different behaviour?