Output the result to a local file
tfcmt normally posts the result of terraform plan
and terraform apply
to GitHub Pull Requests as a comment.
But tfcmt also supports outputting the result to a local file by --output
option.
tfcmt plan:
$ tfcmt --output plan.md plan -- terraform plan
tfcmt apply:
$ tfcmt --output apply.md apply -- terraform apply
If a specified file doesn't exist, the file is created. If the file already exist, the file content is appended.
tip
If you want to overwrite the file content instead of appending, please make the file empty before running tfcmt.
e.g.
: > plan.md # Make the file empty
tfcmt --output plan.md plan -- terraform plan
Metadata isn't embedded.