Skip to content

Commit

Permalink
Merge pull request #24 from synfinatic/update-readme
Browse files Browse the repository at this point in the history
update readme with links to various keystores
  • Loading branch information
synfinatic authored Jul 16, 2021
2 parents 53c9691 + 6cfccf2 commit 66d1855
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# AWS SSO CLI Changelog

## [Unreleased]

## [v1.0.0]

Initial release
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ JsonStore: <path to json file>

SecureStore supports the following backends:

* `json` - Cleartext JSON (insecure and not recommended)
* `file` - Encrypted local file (OS agnostic and default)
* `keychain` - macOS/OSX Keychain
* `json` - Cleartext JSON file (insecure and not recommended)
* `file` - Encrypted local files (OS agnostic and default)
* `keychain` - macOS/OSX [Keychain](https://support.apple.com/guide/mac-help/use-keychains-to-store-passwords-mchlf375f392/mac)
* `kwallet` - [KDE Wallet](https://utils.kde.org/projects/kwalletmanager/)
* `pass` - [pass](https://www.passwordstore.org)
* `secret-service` - Freedesktop.org Secret Service
* `wincred` - Windows credential store
* `secret-service` - Freedesktop.org [Secret Service](https://specifications.freedesktop.org/secret-service/latest/re01.html)
* `wincred` - Windows [Credential Manager](https://support.microsoft.com/en-us/windows/accessing-credential-manager-1b5c916a-6a16-889f-8581-fc16e8165ac0)

## License

Expand Down
1 change: 0 additions & 1 deletion cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import (
"strconv"
"strings"

// "github.com/99designs/keyring"
log "github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const (
JSON_STORE_FILE = CONFIG_DIR + "/store.json"
ENV_SSO_FILE_PASSWORD = "AWS_SSO_FILE_PASSPHRASE"
ENV_SSO_REGION = "AWS_SSO_DEFAULT_REGION"
DEFAULT_STORE = "json" // XXX: FIXME
DEFAULT_STORE = "file"
)

type CLI struct {
Expand Down

0 comments on commit 66d1855

Please sign in to comment.