Skip to content

Commit

Permalink
Added the short flag for key and table for compat with credstash.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfeidau committed May 17, 2016
1 parent 2a84bc4 commit b3e1749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/unicreds/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var (

region = app.Flag("region", "Configure the AWS region").Short('r').String()

dynamoTable = app.Flag("table", "DynamoDB table.").Default("credential-store").String()
alias = app.Flag("alias", "KMS key alias.").Default("alias/credstash").String()
dynamoTable = app.Flag("table", "DynamoDB table.").Default("credential-store").Short('t').String()
alias = app.Flag("alias", "KMS key alias.").Default("alias/credstash").Short('k').String()

// commands
cmdSetup = app.Command("setup", "Setup the dynamodb table used to store credentials.")
Expand Down

0 comments on commit b3e1749

Please sign in to comment.