├── .circleci └── config.yml ├── .github ├── CODEOWNERS └── CONTRIBUTING.md ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── bin └── landscape ├── doc ├── after.png └── before.png ├── grammar └── terraform_plan.treetop ├── lib ├── terraform_landscape.rb └── terraform_landscape │ ├── arguments_parser.rb │ ├── cli.rb │ ├── constants.rb │ ├── errors.rb │ ├── output.rb │ ├── printer.rb │ ├── terraform_plan.rb │ └── version.rb ├── spec ├── printer_spec.rb ├── spec_helper.rb ├── support │ └── normalize_indent.rb └── terraform_plan_spec.rb └── terraform_landscape.gemspec /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/README.md -------------------------------------------------------------------------------- /bin/landscape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/bin/landscape -------------------------------------------------------------------------------- /doc/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/doc/after.png -------------------------------------------------------------------------------- /doc/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/doc/before.png -------------------------------------------------------------------------------- /grammar/terraform_plan.treetop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/grammar/terraform_plan.treetop -------------------------------------------------------------------------------- /lib/terraform_landscape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/arguments_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/arguments_parser.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/cli.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/constants.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/errors.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/output.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/printer.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/terraform_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/terraform_plan.rb -------------------------------------------------------------------------------- /lib/terraform_landscape/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/lib/terraform_landscape/version.rb -------------------------------------------------------------------------------- /spec/printer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/spec/printer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/normalize_indent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/spec/support/normalize_indent.rb -------------------------------------------------------------------------------- /spec/terraform_plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/spec/terraform_plan_spec.rb -------------------------------------------------------------------------------- /terraform_landscape.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/terraform-landscape/HEAD/terraform_landscape.gemspec --------------------------------------------------------------------------------