Documentation ¶
Overview ¶
Package profile handles management of the Teleport profile directory (~/.tsh).
Index ¶
- func FullProfilePath(dir string) string
- func GetCurrentProfileName(dir string) (name string, err error)
- func ListProfileNames(dir string) ([]string, error)
- func SetCurrentProfileName(dir string, name string) error
- type Profile
- func (p *Profile) KeyDir() string
- func (p *Profile) KnownHostsPath() string
- func (p *Profile) Name() string
- func (p *Profile) OldSSHCertPath() string
- func (p *Profile) ProxyKeyDir() string
- func (p *Profile) SSHCertPath() string
- func (p *Profile) SSHClientConfig() (*ssh.ClientConfig, error)
- func (p *Profile) SSHDir() string
- func (p *Profile) SaveToDir(dir string, makeCurrent bool) error
- func (p *Profile) TLSCAsPath() string
- func (p *Profile) TLSCertPath() string
- func (p *Profile) TLSConfig() (*tls.Config, error)
- func (p *Profile) UserKeyPath() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FullProfilePath ¶
FullProfilePath returns the full path to the user profile directory. If the parameter is empty, it returns expanded "~/.tsh", otherwise returns its unmodified parameter
func GetCurrentProfileName ¶
GetCurrentProfileName attempts to load the current profile name.
func ListProfileNames ¶
ListProfileNames lists all available profiles.
func SetCurrentProfileName ¶
SetCurrentProfileName attempts to set the current profile name.
Types ¶
type Profile ¶
type Profile struct { // WebProxyAddr is the host:port the web proxy can be accessed at. WebProxyAddr string `yaml:"web_proxy_addr,omitempty"` // SSHProxyAddr is the host:port the SSH proxy can be accessed at. SSHProxyAddr string `yaml:"ssh_proxy_addr,omitempty"` // KubeProxyAddr is the host:port the Kubernetes proxy can be accessed at. KubeProxyAddr string `yaml:"kube_proxy_addr,omitempty"` // PostgresProxyAddr is the host:port the Postgres proxy can be accessed at. PostgresProxyAddr string `yaml:"postgres_proxy_addr,omitempty"` // MySQLProxyAddr is the host:port the MySQL proxy can be accessed at. MySQLProxyAddr string `yaml:"mysql_proxy_addr,omitempty"` // Username is the Teleport username for the client. Username string `yaml:"user,omitempty"` // AuthType (like "google") AuthType string `yaml:"auth_type,omitempty"` // SiteName is equivalient to --cluster argument SiteName string `yaml:"cluster,omitempty"` // ForwardedPorts is the list of ports to forward to the target node. ForwardedPorts []string `yaml:"forward_ports,omitempty"` // DynamicForwardedPorts is a list of ports to use for dynamic port // forwarding (SOCKS5). DynamicForwardedPorts []string `yaml:"dynamic_forward_ports,omitempty"` // Dir is the directory of this profile. Dir string }
Profile is a collection of most frequently used CLI flags for "tsh".
Profiles can be stored in a profile file, allowing TSH users to type fewer CLI args.
func FromDir ¶
FromDir reads the user profile from a given directory. If dir is empty, this function defaults to the default tsh profile directory. If name is empty, this function defaults to loading the currently active profile (if any).
func (*Profile) KnownHostsPath ¶
KnownHostsPath returns the path to the profile's ssh certificate authorities.
func (*Profile) OldSSHCertPath ¶
OldSSHCertPath returns the old (before v6.1) path to the profile's ssh certificate. DELETE IN 8.0.0
func (*Profile) ProxyKeyDir ¶
ProxyKeyDir returns the path to the profile's key directory.
func (*Profile) SSHCertPath ¶
SSHCertPath returns the path to the profile's ssh certificate.
func (*Profile) SSHClientConfig ¶
func (p *Profile) SSHClientConfig() (*ssh.ClientConfig, error)
SSHClientConfig returns the profile's associated SSHClientConfig.
func (*Profile) SaveToDir ¶
SaveToDir saves this profile to the specified directory. If makeCurrent is true, it makes this profile current.
func (*Profile) TLSCAsPath ¶
TLSCAsPath returns the path to the profile's TLS certificate authorities.
func (*Profile) TLSCertPath ¶
TLSCertPath returns the path to the profile's TLS certificate.
func (*Profile) UserKeyPath ¶
UserKeyPath returns the path to the profile's private key.