Control the format of the stack output printed to the terminal

Hi,

When successfully deploying a stack with cdktf deploy, the content below the section “Outputs:” shows the output twice: first in a flat way, then in a hierarchical way with indents for each Construct. The values of the output in the flat and hierarchical way are the same.

Example:

Outputs:
my-stack  foo = "bar"
          car_color = "blue"

  my-stack
  foo = bar
  car
    color = blue

Is it possible to hide either the flat or hierarchical output formats? In particular, I would like to hide the hierarchical format because it doesn’t bring any addition value to me.

Thanks!