├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature-request---new-table.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── add-issue-to-project.yml │ ├── golangci-lint.yml │ ├── registry-publish.yml │ ├── stale.yml │ ├── steampipe-anywhere.yml │ └── sync-labels.yml ├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── config └── csv.spc ├── csv ├── connection_config.go ├── plugin.go ├── table_code_csv.go └── utils.go ├── docs ├── LICENSE ├── index.md └── tables │ └── {csv_filename}.md ├── go.mod ├── go.sum └── main.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---new-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/ISSUE_TEMPLATE/feature-request---new-table.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-issue-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/add-issue-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/registry-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/registry-publish.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/steampipe-anywhere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/steampipe-anywhere.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/README.md -------------------------------------------------------------------------------- /config/csv.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/config/csv.spc -------------------------------------------------------------------------------- /csv/connection_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/csv/connection_config.go -------------------------------------------------------------------------------- /csv/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/csv/plugin.go -------------------------------------------------------------------------------- /csv/table_code_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/csv/table_code_csv.go -------------------------------------------------------------------------------- /csv/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/csv/utils.go -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tables/{csv_filename}.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/docs/tables/{csv_filename}.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turbot/steampipe-plugin-csv/HEAD/main.go --------------------------------------------------------------------------------