2015-06-26 01:47:32 +00:00
|
|
|
package api
|
|
|
|
|
2015-07-23 21:20:28 +00:00
|
|
|
import "fmt"
|
2015-06-26 01:47:32 +00:00
|
|
|
|
2015-08-12 17:30:50 +00:00
|
|
|
const SSHDefaultMountPoint = "ssh"
|
2015-08-12 16:56:17 +00:00
|
|
|
|
2015-07-02 21:23:09 +00:00
|
|
|
// SSH is used to return a client to invoke operations on SSH backend.
|
2015-07-01 15:58:49 +00:00
|
|
|
type SSH struct {
|
2015-08-12 17:30:50 +00:00
|
|
|
c *Client
|
|
|
|
MountPoint string
|
2015-06-26 01:47:32 +00:00
|
|
|
}
|
|
|
|
|
2015-08-13 00:10:35 +00:00
|
|
|
// Returns the client for logical-backend API calls.
|
2015-08-12 16:56:17 +00:00
|
|
|
func (c *Client) SSH() *SSH {
|
2015-08-12 17:30:50 +00:00
|
|
|
return c.SSHWithMountPoint(SSHDefaultMountPoint)
|
2015-08-12 16:56:17 +00:00
|
|
|
}
|
|
|
|
|
2015-08-13 00:10:35 +00:00
|
|
|
// Returns the client with specific SSH mount point.
|
2015-08-12 17:30:50 +00:00
|
|
|
func (c *Client) SSHWithMountPoint(mountPoint string) *SSH {
|
2015-07-29 18:21:36 +00:00
|
|
|
return &SSH{
|
2015-08-12 17:30:50 +00:00
|
|
|
c: c,
|
|
|
|
MountPoint: mountPoint,
|
2015-07-06 15:05:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 00:10:35 +00:00
|
|
|
// Invokes the SSH backend API to create a credential to establish an SSH session.
|
2015-07-29 18:21:36 +00:00
|
|
|
func (c *SSH) Credential(role string, data map[string]interface{}) (*Secret, error) {
|
2015-08-12 17:30:50 +00:00
|
|
|
r := c.c.NewRequest("PUT", fmt.Sprintf("/v1/%s/creds/%s", c.MountPoint, role))
|
2015-06-26 01:47:32 +00: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)
|
|
|
|
}
|