gitextract_b5nvfihg/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── docker-hub.yml │ ├── go_tests.yml │ └── semgrep.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── examples/ │ ├── .tag-nag.yml │ ├── codebuild.yml │ ├── github.yml │ └── gitlab.yml ├── go.mod ├── go.sum ├── internal/ │ ├── cloudformation/ │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── process.go │ │ ├── resources.go │ │ ├── resources_test.go │ │ ├── scan.go │ │ ├── spec_loader.go │ │ └── spec_loader_test.go │ ├── config/ │ │ └── config.go │ ├── inputs/ │ │ ├── inputs.go │ │ ├── inputs_test.go │ │ ├── loader.go │ │ └── loader_test.go │ ├── output/ │ │ ├── formatter.go │ │ ├── formatter_test.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── junit.go │ │ ├── junit_test.go │ │ ├── process.go │ │ ├── sarif.go │ │ ├── sarif_test.go │ │ ├── text.go │ │ └── text_test.go │ ├── shared/ │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ └── types.go │ └── terraform/ │ ├── default_tags.go │ ├── default_tags_test.go │ ├── helpers.go │ ├── helpers_test.go │ ├── process.go │ ├── references.go │ ├── resources.go │ ├── resources_test.go │ ├── scan.go │ ├── scan_test.go │ └── types.go ├── main.go ├── main_test.go └── testdata/ ├── cloudformation/ │ ├── tags.json │ ├── tags.yaml │ └── tags.yml ├── config/ │ ├── blank_config.yml │ ├── empty_settings.yml │ ├── full_config.yml │ ├── invalid_structure.yml │ ├── invalid_syntax.yml │ ├── missing_tags.yml │ ├── tag_array.yml │ ├── tag_keys.yml │ ├── tag_values.yml │ └── yaml_extension.yaml └── terraform/ ├── example_repo/ │ ├── locals.tf │ ├── main.tf │ ├── provider.tf │ └── variables.tf ├── functions.tf ├── ignore.tf ├── ignore_all.tf ├── no_tags.tf ├── provider.tf ├── referenced_tags.tf ├── referenced_values.tf └── tags.tf