coinbase / terraform-landscape

Improve Terraform's plan output to be easier to read and understand
Apache License 2.0
1.59k stars 116 forks source link

show just resource names? #95

Closed red8888 closed 4 years ago

red8888 commented 5 years ago

doesnt seem like it takes any args yet so this is probably a feature request

Can it just show me the names of resources that are going to be changed/deleted/added?

sds commented 5 years ago

Open to a pull request adding this functionality if it is desired.

sds commented 4 years ago

Closing, as this functionality can accomplished with grep.

terraform plan ... | landscape | grep -E '[~+-] [a-zA-Z0-9_-]+'

Note: this could be refined further, but the general idea works.