From 359c7cdffa1d3b7fad0a3aea9ecbdfd975876bda Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Mon, 5 Feb 2018 10:56:57 -0500 Subject: [PATCH] Add centrify CLI handler support --- command/commands.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/command/commands.go b/command/commands.go index 6af11b0083..7a8204dd9c 100644 --- a/command/commands.go +++ b/command/commands.go @@ -185,11 +185,12 @@ func init() { } loginHandlers := map[string]LoginHandler{ - "aws": &credAws.CLIHandler{}, - "cert": &credCert.CLIHandler{}, - "github": &credGitHub.CLIHandler{}, - "ldap": &credLdap.CLIHandler{}, - "okta": &credOkta.CLIHandler{}, + "aws": &credAws.CLIHandler{}, + "centrify": &credCentrify.CLIHandler{}, + "cert": &credCert.CLIHandler{}, + "github": &credGitHub.CLIHandler{}, + "ldap": &credLdap.CLIHandler{}, + "okta": &credOkta.CLIHandler{}, "radius": &credUserpass.CLIHandler{ DefaultMount: "radius", },