divnix / std

A DevOps framework for the SDLC with the power of Nix and Flakes. Good for keeping deadlines!
https://std.divnix.com
377 stars 41 forks source link

fix: Improve readability of terraform errors #362

Closed dantefromhell closed 7 months ago

dantefromhell commented 7 months ago

When terraform errors output the affected line-of-code the output is highly unreadable as `config.tf.json' is a one-line JSON file.

Since there seems to be no nix expression for pretty printing JSON, this PR uses jq on the command line instead.

The result is that terraform syntax errors output the single affected line-of-code.

blaggacao commented 7 months ago

Cool!! Thanks!