- Notifications
You must be signed in to change notification settings - Fork16
A Terraform plan output prettifier
License
dmlittle/scenery
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Scenery was specifically designed to parse the plan output of Terraform 0.11 which has since beendeprecated. Anyone considering building upon this tool is recommended to look into the new terraform planJSON output (introdcued in Terrafrom 0.12) rather than parsing raw text output. Additionally Terraform 0.14 introducedconcise diff plan outputs that does most of what scenery does today.
Scenery is a zero dependencies CLI tool to prettifyterraform plan
outputs to be easier to read and digest. A lot of inspiration was drawn fromTerraform Landscape.
If you have a functional Go environment, you can installscenery
with the following command:
$ go get -u github.com/dmlittle/scenery
$ terraform plan ...| scenery
If you wish to suppress the color output you may pass a--no-color
flag toscenery
.
$ terraform plan ...| scenery --no-color
The MIT License (MIT) - seeLICENSE.md
for more details.
About
A Terraform plan output prettifier