2015-06-25 21:47:32 -04:00
|
|
|
package api
|
|
|
|
|
|
2015-07-23 17:20:28 -04:00
|
|
|
import "fmt"
|
2015-06-25 21:47:32 -04:00
|
|
|
|
2015-07-02 17:23:09 -04:00
|
|
|
// SSH is used to return a client to invoke operations on SSH backend.
|
2015-07-01 11:58:49 -04:00
|
|
|
type SSH struct {
|
2015-08-12 13:30:50 -04:00
|
|
|
c *Client
|
|
|
|
|
MountPoint string
|
2015-06-25 21:47:32 -04:00
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// SSH returns the client for logical-backend API calls.
|
2015-08-12 12:56:17 -04:00
|
|
|
func (c *Client) SSH() *SSH {
|
2015-08-17 21:22:03 -04:00
|
|
|
return c.SSHWithMountPoint(SSHAgentDefaultMountPoint)
|
2015-08-12 12:56:17 -04:00
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// SSHWithMountPoint returns the client with specific SSH mount point.
|
2015-08-12 13:30:50 -04:00
|
|
|
func (c *Client) SSHWithMountPoint(mountPoint string) *SSH {
|
2015-07-29 14:21:36 -04:00
|
|
|
return &SSH{
|
2015-08-12 13:30:50 -04:00
|
|
|
c: c,
|
|
|
|
|
MountPoint: mountPoint,
|
2015-07-06 11:05:02 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:35:16 -04:00
|
|
|
// Credential invokes the SSH backend API to create a credential to establish an SSH session.
|
2015-07-29 14:21:36 -04:00
|
|
|
func (c *SSH) Credential(role string, data map[string]interface{}) (*Secret, error) {
|
2015-08-12 13:30:50 -04:00
|
|
|
r := c.c.NewRequest("PUT", fmt.Sprintf("/v1/%s/creds/%s", c.MountPoint, role))
|
2015-06-25 21:47:32 -04:00
|
|
|
if err := r.SetJSONBody(data); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
resp, err := c.c.RawRequest(r)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
|
|
return ParseSecret(resp.Body)
|
|
|
|
|
}
|