Documentation ¶
Index ¶
Constants ¶
const ( GlobalHelpString = "CLI Admin tool for the Teleport Auth service. Runs on a host where Teleport Auth is running." AddUserHelp = `` /* 633-byte string literal not displayed */ AddNodeHelp = `` /* 501-byte string literal not displayed */ ListNodesHelp = `Notes: SSH nodes send periodic heartbeat to the Auth service. This command prints the list of current online nodes. ` )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AuthCommand ¶
type AuthCommand struct {
// contains filtered or unexported fields
}
func (*AuthCommand) ExportAuthorities ¶
func (a *AuthCommand) ExportAuthorities(client *auth.TunClient) error
ExportAuthorities outputs the list of authorities in OpenSSH compatible formats If --type flag is given, only prints keys for CAs of this type, otherwise prints all keys
func (*AuthCommand) GenerateAndSignKeys ¶
func (a *AuthCommand) GenerateAndSignKeys(client *auth.TunClient) error
GenerateAndSignKeys generates a new keypair and signs it for role
func (*AuthCommand) GenerateKeys ¶
func (a *AuthCommand) GenerateKeys() error
GenerateKeys generates a new keypair
func (*AuthCommand) ListAuthorities ¶
func (a *AuthCommand) ListAuthorities(client *auth.TunClient) error
ListAuthorities shows list of user authorities we trust
type AuthServerCommand ¶
type AuthServerCommand struct {
// contains filtered or unexported fields
}
type CreateCommand ¶
type CreateCommand struct {
// contains filtered or unexported fields
}
type DeleteCommand ¶
type DeleteCommand struct {
// contains filtered or unexported fields
}
type GetCommand ¶
type GetCommand struct {
// contains filtered or unexported fields
}
type NodeCommand ¶
type NodeCommand struct {
// contains filtered or unexported fields
}
func (*NodeCommand) Invite ¶
func (u *NodeCommand) Invite(client *auth.TunClient) error
Invite generates a token which can be used to add another SSH node to a cluster
func (*NodeCommand) ListActive ¶
func (u *NodeCommand) ListActive(client *auth.TunClient) error
ListActive retreives the list of nodes who recently sent heartbeats to to a cluster and prints it to stdout
type ReverseTunnelCommand ¶
type ReverseTunnelCommand struct {
// contains filtered or unexported fields
}
func (*ReverseTunnelCommand) Delete ¶
func (r *ReverseTunnelCommand) Delete(client *auth.TunClient) error
Delete deletes teleport user(s). User IDs are passed as a comma-separated list in UserCommand.login
func (*ReverseTunnelCommand) ListActive ¶
func (r *ReverseTunnelCommand) ListActive(client *auth.TunClient) error
ListActive retreives the list of nodes who recently sent heartbeats to to a cluster and prints it to stdout
type TokenCommand ¶
type TokenCommand struct {
// contains filtered or unexported fields
}
type UserCommand ¶
type UserCommand struct {
// contains filtered or unexported fields
}
func (*UserCommand) Add ¶
func (u *UserCommand) Add(client *auth.TunClient) error
Add creates a new sign-up token and prints a token URL to stdout. A user is not created until he visits the sign-up URL and completes the process
func (*UserCommand) Delete ¶
func (u *UserCommand) Delete(client *auth.TunClient) error
Delete deletes teleport user(s). User IDs are passed as a comma-separated list in UserCommand.login