← 返回命令列表

Linux command

pipeform 命令

网络

涉及管道、覆盖或删除,执行前请先确认路径和参数。

常用示例

Pipe a Terraform plan into the TUI

terraform plan -json | pipeform

Pipe a Terraform apply into the TUI

terraform apply -auto-approve -json | pipeform

Export timing data to CSV

terraform apply -json | pipeform --time-csv=[output.csv]

说明

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.

参数

--time-csv _PATH_
Generate a CSV file with timing data for further analysis.

FAQ

What is the pipeform command used for?

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.

How do I run a basic pipeform example?

Run `terraform plan -json | pipeform` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --time-csv _PATH_ do in pipeform?

Generate a CSV file with timing data for further analysis.