Saving terraspace all graph --format text output

Hello,

Just a quick update…

I was looking through the forums and stumbled upon the Logging to stderr breaks Azure DevOps pipelines thread. So, following @xxbeanxx’s suggestion, I was able to output the graph (in text format) into stdout by doing the following:

Terraspace.configure do |config|
  logger = Logger.new($stdout)
  config.logger = logger
end

Cheers,
James

1 Like