├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION.md ├── _kion ├── doc ├── config_sop.md ├── kion-cli-hero.png ├── kion-cli-usage.gif ├── man1 │ └── kion.1 └── release_sop.md ├── go.mod ├── go.sum ├── lib ├── cache │ ├── cache.go │ ├── helpers-cache.go │ ├── password-cache.go │ ├── session-cache.go │ └── stak-cache.go ├── commands │ ├── authentication.go │ ├── commands.go │ ├── console.go │ ├── favorite.go │ ├── run.go │ ├── stak.go │ ├── utility.go │ └── validators.go ├── defaults │ ├── defaults.go │ └── defaults.yml ├── helper │ ├── browser.go │ ├── configuration.go │ ├── helper.go │ ├── helper_test.go │ ├── output.go │ ├── output_test.go │ ├── prompts.go │ ├── shell.go │ ├── transform.go │ ├── transform_test.go │ └── wizards.go ├── kion │ ├── account.go │ ├── auth.go │ ├── car.go │ ├── console.go │ ├── favorite.go │ ├── kion.go │ ├── private.go │ ├── project.go │ ├── saml.go │ └── stak.go └── structs │ ├── configuration-structs.go │ ├── helper-structs.go │ ├── session-structs.go │ └── structs.go └── main.go /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | v0.14.0 2 | -------------------------------------------------------------------------------- /_kion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/_kion -------------------------------------------------------------------------------- /doc/config_sop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/doc/config_sop.md -------------------------------------------------------------------------------- /doc/kion-cli-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/doc/kion-cli-hero.png -------------------------------------------------------------------------------- /doc/kion-cli-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/doc/kion-cli-usage.gif -------------------------------------------------------------------------------- /doc/man1/kion.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/doc/man1/kion.1 -------------------------------------------------------------------------------- /doc/release_sop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/doc/release_sop.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/go.sum -------------------------------------------------------------------------------- /lib/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/cache/cache.go -------------------------------------------------------------------------------- /lib/cache/helpers-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/cache/helpers-cache.go -------------------------------------------------------------------------------- /lib/cache/password-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/cache/password-cache.go -------------------------------------------------------------------------------- /lib/cache/session-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/cache/session-cache.go -------------------------------------------------------------------------------- /lib/cache/stak-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/cache/stak-cache.go -------------------------------------------------------------------------------- /lib/commands/authentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/authentication.go -------------------------------------------------------------------------------- /lib/commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/commands.go -------------------------------------------------------------------------------- /lib/commands/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/console.go -------------------------------------------------------------------------------- /lib/commands/favorite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/favorite.go -------------------------------------------------------------------------------- /lib/commands/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/run.go -------------------------------------------------------------------------------- /lib/commands/stak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/stak.go -------------------------------------------------------------------------------- /lib/commands/utility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/utility.go -------------------------------------------------------------------------------- /lib/commands/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/commands/validators.go -------------------------------------------------------------------------------- /lib/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/defaults/defaults.go -------------------------------------------------------------------------------- /lib/defaults/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/defaults/defaults.yml -------------------------------------------------------------------------------- /lib/helper/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/browser.go -------------------------------------------------------------------------------- /lib/helper/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/configuration.go -------------------------------------------------------------------------------- /lib/helper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/helper.go -------------------------------------------------------------------------------- /lib/helper/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/helper_test.go -------------------------------------------------------------------------------- /lib/helper/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/output.go -------------------------------------------------------------------------------- /lib/helper/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/output_test.go -------------------------------------------------------------------------------- /lib/helper/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/prompts.go -------------------------------------------------------------------------------- /lib/helper/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/shell.go -------------------------------------------------------------------------------- /lib/helper/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/transform.go -------------------------------------------------------------------------------- /lib/helper/transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/transform_test.go -------------------------------------------------------------------------------- /lib/helper/wizards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/helper/wizards.go -------------------------------------------------------------------------------- /lib/kion/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/account.go -------------------------------------------------------------------------------- /lib/kion/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/auth.go -------------------------------------------------------------------------------- /lib/kion/car.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/car.go -------------------------------------------------------------------------------- /lib/kion/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/console.go -------------------------------------------------------------------------------- /lib/kion/favorite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/favorite.go -------------------------------------------------------------------------------- /lib/kion/kion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/kion.go -------------------------------------------------------------------------------- /lib/kion/private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/private.go -------------------------------------------------------------------------------- /lib/kion/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/project.go -------------------------------------------------------------------------------- /lib/kion/saml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/saml.go -------------------------------------------------------------------------------- /lib/kion/stak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/kion/stak.go -------------------------------------------------------------------------------- /lib/structs/configuration-structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/structs/configuration-structs.go -------------------------------------------------------------------------------- /lib/structs/helper-structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/structs/helper-structs.go -------------------------------------------------------------------------------- /lib/structs/session-structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/structs/session-structs.go -------------------------------------------------------------------------------- /lib/structs/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/lib/structs/structs.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kionsoftware/kion-cli/HEAD/main.go --------------------------------------------------------------------------------