open-vault/builtin/credential/okta/cli.go

91 lines
1.8 KiB
Go
Raw Normal View History

2017-01-27 00:08:52 +00:00
package okta
import (
"fmt"
"os"
"strings"
pwd "github.com/hashicorp/go-secure-stdlib/password"
2017-01-27 00:08:52 +00:00
"github.com/hashicorp/vault/api"
)
// CLIHandler struct
type CLIHandler struct{}
// Auth cli method
func (h *CLIHandler) Auth(c *api.Client, m map[string]string) (*api.Secret, error) {
2017-01-27 00:08:52 +00:00
mount, ok := m["mount"]
if !ok {
mount = "okta"
}
username, ok := m["username"]
if !ok {
return nil, fmt.Errorf("'username' var must be set")
2017-01-27 00:08:52 +00:00
}
password, ok := m["password"]
if !ok {
fmt.Fprintf(os.Stderr, "Password (will be hidden): ")
2017-01-27 00:08:52 +00:00
var err error
password, err = pwd.Read(os.Stdin)
fmt.Fprintf(os.Stderr, "\n")
2017-01-27 00:08:52 +00:00
if err != nil {
return nil, err
2017-01-27 00:08:52 +00:00
}
}
data := map[string]interface{}{
"password": password,
}
// Okta or Google totp code
2021-02-22 05:18:17 +00:00
if totp, ok := m["totp"]; ok {
data["totp"] = totp
}
// provider is an optional parameter
if provider, ok := m["provider"]; ok {
data["provider"] = provider
}
2017-01-27 00:08:52 +00:00
path := fmt.Sprintf("auth/%s/login/%s", mount, username)
secret, err := c.Logical().Write(path, data)
if err != nil {
return nil, err
2017-01-27 00:08:52 +00:00
}
if secret == nil {
return nil, fmt.Errorf("empty response from credential provider")
2017-01-27 00:08:52 +00:00
}
return secret, nil
2017-01-27 00:08:52 +00:00
}
// Help method for okta cli
func (h *CLIHandler) Help() string {
help := `
Usage: vault login -method=okta [CONFIG K=V...]
2017-01-27 00:08:52 +00:00
2017-10-04 21:16:39 +00:00
The Okta auth method allows users to authenticate using Okta.
2017-01-27 00:08:52 +00:00
2017-09-02 22:50:21 +00:00
Authenticate as "sally":
$ vault login -method=okta username=sally
2017-09-02 22:50:21 +00:00
Password (will be hidden):
Authenticate as "bob":
$ vault login -method=okta username=bob password=password
2017-09-02 22:50:21 +00:00
Configuration:
password=<string>
2017-10-04 21:16:39 +00:00
Okta password to use for authentication. If not provided, the CLI will
2017-09-02 22:50:21 +00:00
prompt for this on stdin.
username=<string>
2017-10-04 21:16:39 +00:00
Okta username to use for authentication.
`
2017-01-27 00:08:52 +00:00
return strings.TrimSpace(help)
}