Documentation ¶
Index ¶
- Variables
- func ExtractAwsRoles(data []byte) ([]string, error)
- type ADFS2Client
- type ADFSClient
- type AWSAccount
- type AWSRole
- type ConfigLoader
- func (p *ConfigLoader) LoadHostname() (string, error)
- func (p *ConfigLoader) LoadProvider(defaultValue string) (string, error)
- func (p *ConfigLoader) LoadUsername() (string, error)
- func (p *ConfigLoader) SaveHostname(hostname string) error
- func (p *ConfigLoader) SaveProvider(provider string) error
- func (p *ConfigLoader) SaveUsername(username string) error
- type CredentialsProvider
- type ErrMissingElement
- type JumpCloudClient
- type LoginDetails
- type PingFedClient
- type Provider
- type SAMLClient
- type SAMLOptions
Constants ¶
This section is empty.
Variables ¶
var ( // ErrCredentialsHomeNotFound returned when a user home directory can't be located. ErrCredentialsHomeNotFound = errors.New("user home directory not found") // ErrCredentialsNotFound returned when the required aws credentials don't exist. ErrCredentialsNotFound = errors.New("aws credentials not found") )
var ( // ErrConfigHomeNotFound returned when a user home directory can't be located. ErrConfigHomeNotFound = errors.New("user home directory not found") // ErrConfigFileNotFound returned when the required aws credentials file doesn't exist. ErrConfigFileNotFound = errors.New("aws credentials file not found") )
var (
ErrMissingAssertion = ErrMissingElement{Tag: assertionTag}
)
ErrMissingAssertion indicates that an appropriate assertion element could not be found in the SAML Response
Functions ¶
func ExtractAwsRoles ¶
ExtractAwsRoles given an assertion document extract the aws roles
Types ¶
type ADFS2Client ¶ added in v1.4.0
type ADFS2Client struct {
// contains filtered or unexported fields
}
func NewADFS2Client ¶ added in v1.4.0
func NewADFS2Client(skipVerify bool) (*ADFS2Client, error)
func (*ADFS2Client) Authenticate ¶ added in v1.4.0
func (ac *ADFS2Client) Authenticate(loginDetails *LoginDetails) (string, error)
type ADFSClient ¶
type ADFSClient struct {
// contains filtered or unexported fields
}
ADFSClient wrapper around ADFS enabling authentication and retrieval of assertions
func NewADFSClient ¶
func NewADFSClient(skipVerify bool) (*ADFSClient, error)
NewADFSClient create a new ADFS client
func (*ADFSClient) Authenticate ¶
func (ac *ADFSClient) Authenticate(loginDetails *LoginDetails) (string, error)
Authenticate authenticate to ADFS and return the data from the body of the SAML assertion.
type AWSAccount ¶ added in v1.5.0
func ExtractAWSAccounts ¶ added in v1.5.0
func ExtractAWSAccounts(data []byte) ([]*AWSAccount, error)
func ParseAWSAccounts ¶ added in v1.5.0
func ParseAWSAccounts(samlAssertion string) ([]*AWSAccount, error)
type AWSRole ¶
AWSRole aws role attributes
func ParseAWSRoles ¶ added in v1.3.0
ParseAWSRoles parses and splits the roles while also validating the contents
func PromptForAWSRoleSelection ¶
func PromptForAWSRoleSelection(accounts []*AWSAccount) (*AWSRole, error)
PromptForAWSRoleSelection present a list of roles to the user for selection
type ConfigLoader ¶ added in v1.1.0
ConfigLoader loads config options
func NewConfigLoader ¶ added in v1.1.0
func NewConfigLoader(profile string) *ConfigLoader
NewConfigLoader helper to create the config
func (*ConfigLoader) LoadHostname ¶ added in v1.1.0
func (p *ConfigLoader) LoadHostname() (string, error)
LoadHostname load the hostname
func (*ConfigLoader) LoadProvider ¶ added in v1.3.0
func (p *ConfigLoader) LoadProvider(defaultValue string) (string, error)
LoadProvider load the provider
func (*ConfigLoader) LoadUsername ¶ added in v1.1.0
func (p *ConfigLoader) LoadUsername() (string, error)
LoadUsername load the username
func (*ConfigLoader) SaveHostname ¶ added in v1.1.0
func (p *ConfigLoader) SaveHostname(hostname string) error
SaveHostname persist the hostname
func (*ConfigLoader) SaveProvider ¶ added in v1.3.0
func (p *ConfigLoader) SaveProvider(provider string) error
SaveProvider persist the provider
func (*ConfigLoader) SaveUsername ¶ added in v1.1.0
func (p *ConfigLoader) SaveUsername(username string) error
SaveUsername persist the username
type CredentialsProvider ¶
CredentialsProvider loads aws credentials file
func NewSharedCredentials ¶
func NewSharedCredentials(profile string) *CredentialsProvider
NewSharedCredentials helper to create the credentials provider
func (*CredentialsProvider) Load ¶ added in v1.2.0
func (p *CredentialsProvider) Load() (string, string, string, error)
Load load the aws credentials file
func (*CredentialsProvider) Save ¶
func (p *CredentialsProvider) Save(id, secret, token string) error
Save persist the credentials
type ErrMissingElement ¶
type ErrMissingElement struct {
Tag, Attribute string
}
ErrMissingElement is the error type that indicates an element and/or attribute is missing. It provides a structured error that can be more appropriately acted upon.
func (ErrMissingElement) Error ¶
func (e ErrMissingElement) Error() string
type JumpCloudClient ¶ added in v1.5.0
type JumpCloudClient struct {
// contains filtered or unexported fields
}
JumpCloudClient is a wrapper representing a JumpCloud SAML client
func NewJumpCloudClient ¶ added in v1.5.0
func NewJumpCloudClient(skipVerify bool) (*JumpCloudClient, error)
NewJumpCloudClient creates a new JumpCloud client
func (*JumpCloudClient) Authenticate ¶ added in v1.5.0
func (jc *JumpCloudClient) Authenticate(loginDetails *LoginDetails) (string, error)
Authenticate logs into JumpCloud and returns a SAML response
type LoginDetails ¶ added in v1.1.0
LoginDetails used to authenticate to ADFS
func PromptForLoginDetails ¶ added in v1.1.0
func PromptForLoginDetails(username, hostname string) (*LoginDetails, error)
PromptForLoginDetails prompt the user to present their username, password and hostname
type PingFedClient ¶ added in v1.3.0
type PingFedClient struct {
// contains filtered or unexported fields
}
PingFedClient wrapper around PingFed + PingId enabling authentication and retrieval of assertions
func NewPingFedClient ¶ added in v1.3.0
func NewPingFedClient(skipVerify bool) (*PingFedClient, error)
NewPingFedClient create a new PingFed client
func (*PingFedClient) Authenticate ¶ added in v1.3.0
func (ac *PingFedClient) Authenticate(loginDetails *LoginDetails) (string, error)
Authenticate Authenticate to PingFed and return the data from the body of the SAML assertion.
type SAMLClient ¶ added in v1.3.0
type SAMLClient interface {
Authenticate(loginDetails *LoginDetails) (string, error)
}
SAMLClient client interface
func NewSAMLClient ¶ added in v1.3.0
func NewSAMLClient(opts *SAMLOptions) (SAMLClient, error)
NewSAMLClient create a new SAML client
type SAMLOptions ¶ added in v1.3.0
SAMLOptions options for the new SAML client