LinuxCommandLibrary

pipeform

TUI that visualizes Terraform runtime progress

TLDR

Pipe a Terraform plan into the TUI
$ terraform plan -json | pipeform
copy
Pipe a Terraform apply into the TUI
$ terraform apply -auto-approve -json | pipeform
copy
Export timing data to CSV
$ terraform apply -json | pipeform --time-csv=[output.csv]
copy

SYNOPSIS

terraformcommand **-json** | **pipeform** [options_]

DESCRIPTION

pipeform is a TUI that visualizes the progress of Terraform operations. It reads Terraform's machine-readable JSON output via a pipe and displays execution progress interactively. After execution, output variables are shown in a table with clipboard copy support.

PARAMETERS

--time-csv PATH

Generate a CSV file with timing data for further analysis.

CAVEATS

All piped Terraform commands must include the -json flag. Only works with Terraform's machine-readable JSON output format.

HISTORY

pipeform was created by magodo and is written in Go.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard