├── .coderabbit.yaml ├── .copywrite.hcl ├── .editorconfig ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yaml │ ├── codeql.yml │ ├── scorecard.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── .pre-commit-config.yaml ├── Brewfile ├── FUNDING.yml ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── cmd ├── docs.go ├── fix.go ├── list.go ├── list_models.go ├── recommend.go ├── root.go ├── version.go └── version_test.go ├── docs ├── Customizing_Ollama.md ├── img │ ├── kuzco-demo.gif │ ├── kuzco-demo.tape │ └── kuzco-logo.png ├── kuzco.md ├── kuzco_completion.md ├── kuzco_completion_bash.md ├── kuzco_completion_fish.md ├── kuzco_completion_powershell.md ├── kuzco_completion_zsh.md ├── kuzco_fix.md ├── kuzco_recommend.md └── kuzco_version.md ├── go.mod ├── go.sum ├── internal ├── analyzer.go ├── dry_run.go ├── llm.go ├── opentofu_schema.go ├── output.go ├── parser.go ├── terraform_schema.go └── tui │ └── utils │ └── utils.go ├── main.go ├── pkg └── utils │ ├── list_models.go │ └── logging.go ├── renovate.json ├── test ├── fix-syntax.tf └── s3-recommendations.tf └── tools └── tools.go /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @RoseSecurity -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/Brewfile -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/docs.go -------------------------------------------------------------------------------- /cmd/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/fix.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/list_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/list_models.go -------------------------------------------------------------------------------- /cmd/recommend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/recommend.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/cmd/version_test.go -------------------------------------------------------------------------------- /docs/Customizing_Ollama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/Customizing_Ollama.md -------------------------------------------------------------------------------- /docs/img/kuzco-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/img/kuzco-demo.gif -------------------------------------------------------------------------------- /docs/img/kuzco-demo.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/img/kuzco-demo.tape -------------------------------------------------------------------------------- /docs/img/kuzco-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/img/kuzco-logo.png -------------------------------------------------------------------------------- /docs/kuzco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco.md -------------------------------------------------------------------------------- /docs/kuzco_completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_completion.md -------------------------------------------------------------------------------- /docs/kuzco_completion_bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_completion_bash.md -------------------------------------------------------------------------------- /docs/kuzco_completion_fish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_completion_fish.md -------------------------------------------------------------------------------- /docs/kuzco_completion_powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_completion_powershell.md -------------------------------------------------------------------------------- /docs/kuzco_completion_zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_completion_zsh.md -------------------------------------------------------------------------------- /docs/kuzco_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_fix.md -------------------------------------------------------------------------------- /docs/kuzco_recommend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_recommend.md -------------------------------------------------------------------------------- /docs/kuzco_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/docs/kuzco_version.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/go.sum -------------------------------------------------------------------------------- /internal/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/analyzer.go -------------------------------------------------------------------------------- /internal/dry_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/dry_run.go -------------------------------------------------------------------------------- /internal/llm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/llm.go -------------------------------------------------------------------------------- /internal/opentofu_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/opentofu_schema.go -------------------------------------------------------------------------------- /internal/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/output.go -------------------------------------------------------------------------------- /internal/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/parser.go -------------------------------------------------------------------------------- /internal/terraform_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/terraform_schema.go -------------------------------------------------------------------------------- /internal/tui/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/internal/tui/utils/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/main.go -------------------------------------------------------------------------------- /pkg/utils/list_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/pkg/utils/list_models.go -------------------------------------------------------------------------------- /pkg/utils/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/pkg/utils/logging.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/renovate.json -------------------------------------------------------------------------------- /test/fix-syntax.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/test/fix-syntax.tf -------------------------------------------------------------------------------- /test/s3-recommendations.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/test/s3-recommendations.tf -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoseSecurity/Kuzco/HEAD/tools/tools.go --------------------------------------------------------------------------------