2015-08-12 16:25:28 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Secret Backend: SSH"
|
|
|
|
sidebar_current: "docs-secrets-ssh"
|
|
|
|
description: |-
|
2015-09-21 20:12:38 +00:00
|
|
|
The SSH secret backend for Vault generates dynamic SSH keys or One-Time-Passwords.
|
2015-08-12 16:25:28 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# SSH Secret Backend
|
|
|
|
|
|
|
|
Name: `ssh`
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Vault SSH backend dynamically generates SSH credentials for remote hosts. This
|
|
|
|
increases security by removing the need to share private keys with all users
|
|
|
|
needing access to infrastructure. It also solves the problem of management and distribution of keys belonging to remote hosts.
|
2015-08-18 01:22:03 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
This backend supports two types of credential creation: Dynamic Key and
|
|
|
|
One-Time Password (OTP), which address these problems in different ways.
|
2015-08-18 01:22:03 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Read and carefully understand both of them before choosing the one which best
|
|
|
|
suits your needs. The Vault team strongly recommends the OTP type whenever
|
|
|
|
possible, and the drawbacks to the dynamic key type should be carefully considered
|
|
|
|
before choosing it.
|
2015-08-18 01:22:03 +00:00
|
|
|
|
|
|
|
This page will show a quick start for this backend. For detailed documentation
|
|
|
|
on every path, use `vault path-help` after mounting the backend.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
### Mounting SSH
|
|
|
|
|
|
|
|
The `ssh` backend is not mounted by default and needs to be explicitly mounted.
|
|
|
|
This is a common step for both OTP and Dynamic Key types.
|
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2015-09-21 20:12:38 +00:00
|
|
|
$ vault mount ssh
|
|
|
|
Successfully mounted 'ssh' at 'ssh'!
|
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
----------------------------------------------------
|
2015-09-21 20:12:38 +00:00
|
|
|
## I. One-Time-Password (OTP) Type
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
This backend type allows a Vault server to issue an OTP every time a client
|
|
|
|
wants to SSH into a remote host, using a helper command on the remote host to
|
2015-09-30 14:58:44 +00:00
|
|
|
perform verification.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
An authenticated client requests credentials from the Vault server and, if
|
|
|
|
authorized, is issued an OTP. When the client establishes an SSH connection
|
|
|
|
to the desired remote host, the OTP used during SSH authentication is received
|
|
|
|
by the Vault helper, which then validates the OTP with the Vault server. The
|
|
|
|
Vault server then deletes this OTP, ensuring that it is only used once.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Since the Vault server is contacted during SSH connection establishment, every
|
|
|
|
login attempt and the correlating Vault lease information is logged to the
|
|
|
|
audit backend.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
See [Vault-SSH-Helper](https://github.com/hashicorp/vault-ssh-helper) for
|
|
|
|
details on the helper.
|
|
|
|
|
|
|
|
### Drawbacks
|
|
|
|
|
|
|
|
The main concern with the OTP backend type is the remote host's connection to
|
|
|
|
Vault; if compromised, an attacker could spoof the Vault server returning
|
|
|
|
a successful request. This risk can be mitigated by using TLS for the
|
|
|
|
connection to Vault and checking certificate validity; future enhancements to
|
2015-09-21 20:26:07 +00:00
|
|
|
this backend may allow for extra security on top of what TLS provides.
|
2015-09-21 20:12:38 +00:00
|
|
|
|
|
|
|
### Creating a Role
|
|
|
|
|
|
|
|
Create a role with the `key_type` parameter set to `otp`. All of the machines
|
|
|
|
represented by the role's CIDR list should have helper properly installed and
|
|
|
|
configured.
|
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
|
|
|
$ vault write ssh/roles/otp_key_role \
|
|
|
|
key_type=otp \
|
|
|
|
default_user=username \
|
|
|
|
cidr_list=x.x.x.x/y,m.m.m.m/n
|
2015-09-21 20:12:38 +00:00
|
|
|
Success! Data written to: ssh/roles/otp_key_role
|
2015-08-14 19:41:26 +00:00
|
|
|
```
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
### Create a Credential
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2016-05-30 05:26:51 +00:00
|
|
|
Create an OTP credential for an IP of the remote host that belongs to `otp_key_role`.
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2015-09-21 20:12:38 +00:00
|
|
|
$ vault write ssh/creds/otp_key_role ip=x.x.x.x
|
|
|
|
Key Value
|
|
|
|
lease_id ssh/creds/otp_key_role/73bbf513-9606-4bec-816c-5a2f009765a5
|
|
|
|
lease_duration 600
|
|
|
|
lease_renewable false
|
|
|
|
port 22
|
|
|
|
username username
|
|
|
|
ip x.x.x.x
|
|
|
|
key 2f7e25a2-24c9-4b7b-0d35-27d5e5203a5c
|
|
|
|
key_type otp
|
|
|
|
```
|
|
|
|
|
|
|
|
### Establish an SSH session
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2015-09-21 20:12:38 +00:00
|
|
|
$ ssh username@localhost
|
|
|
|
Password: <Enter OTP>
|
|
|
|
username@ip:~$
|
|
|
|
```
|
|
|
|
|
|
|
|
### Automate it!
|
|
|
|
|
|
|
|
A single CLI command can be used to create a new OTP and invoke SSH with the
|
2016-05-15 16:58:36 +00:00
|
|
|
correct parameters to connect to the host.
|
2015-09-21 20:12:38 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2015-09-21 20:12:38 +00:00
|
|
|
$ vault ssh -role otp_key_role username@x.x.x.x
|
|
|
|
OTP for the session is `b4d47e1b-4879-5f4e-ce5c-7988d7986f37`
|
|
|
|
[Note: Install `sshpass` to automate typing in OTP]
|
|
|
|
Password: <Enter OTP>
|
|
|
|
```
|
|
|
|
|
|
|
|
The OTP will be entered automatically using `sshpass` if it is installed.
|
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2016-05-30 05:26:51 +00:00
|
|
|
$ vault ssh -role otp_key_role -strict-host-key-checking=no username@x.x.x.x
|
|
|
|
username@<IP of remote host>:~$
|
2015-09-21 20:12:38 +00:00
|
|
|
```
|
|
|
|
|
2016-05-30 05:26:51 +00:00
|
|
|
Note: `sshpass` cannot handle host key checking. Host key checking can be
|
|
|
|
disabled by setting `-strict-host-key-checking=no`.
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
----------------------------------------------------
|
|
|
|
## II. Dynamic Key Type
|
|
|
|
|
|
|
|
When using this type, the administrator registers a secret key with appropriate
|
|
|
|
`sudo` privileges on the remote machines; for every authorized credential
|
|
|
|
request, Vault creates a new SSH key pair and appends the newly-generated
|
|
|
|
public key to the `authorized_keys` file for the configured username on the
|
|
|
|
remote host. Vault uses a configurable install script to achieve this.
|
|
|
|
|
|
|
|
The backend does not prompt for `sudo` passwords; the `NOPASSWD` option
|
|
|
|
for sudoers should be enabled at all remote hosts for the Vault administrative
|
|
|
|
user.
|
|
|
|
|
|
|
|
The private key returned to the user will be leased and can be renewed if
|
|
|
|
desired. Once the key is given to the user, Vault will not know when it gets
|
|
|
|
used or how many time it gets used. Therefore, Vault **WILL NOT** and cannot
|
|
|
|
audit the SSH session establishments.
|
|
|
|
|
|
|
|
When the credential lease expires, Vault removes the secret key from the remote
|
|
|
|
machine.
|
|
|
|
|
|
|
|
### Drawbacks
|
|
|
|
|
|
|
|
The dynamic key type has several serious drawbacks:
|
|
|
|
|
|
|
|
1. _Audit logs are unreliable_: Vault can only log when users request
|
|
|
|
credentials, not when they use the given keys. If user A and user B both
|
|
|
|
request access to a machine, and are given a lease valid for five minutes,
|
|
|
|
it is impossible to know whether two accesses to that user account on the
|
|
|
|
remote machine were A, A; A, B; B, A; or B, B.
|
|
|
|
2. _Generating dynamic keys consumes entropy_: Unless equipped with a hardware
|
|
|
|
entropy generating device, a machine can quickly run out of entropy when
|
|
|
|
generating SSH keys. This will cause further requests for various Vault
|
|
|
|
operations to stall until more entropy is available, which could take a
|
|
|
|
significant amount of time, after which the next request for a new SSH key
|
|
|
|
will use the generated entropy and cause stalling again.
|
|
|
|
|
|
|
|
Because of these drawbacks, the Vault team recommends use of the OTP type
|
|
|
|
whenever possible. Care should be taken with respect to the above issues with
|
|
|
|
any deployments using the dynamic key type.
|
|
|
|
|
|
|
|
### sudo
|
|
|
|
|
|
|
|
In order to adjust the `authorized_keys` file for the desired user, Vault
|
|
|
|
connects via SSH to the remote machine as a separate user, and uses `sudo` to
|
|
|
|
gain the privileges required. An example `sudoers` file is shown below.
|
|
|
|
|
|
|
|
File: `/etc/sudoers`
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
# This is a sample sudoers statement; you should modify it
|
|
|
|
# as appropriate to satisfy your security needs.
|
|
|
|
vaultadmin ALL=(ALL)NOPASSWD: ALL
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
### Configuration
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Next, infrastructure configuration must be registered with Vault via roles.
|
|
|
|
First, however, the shared secret key must be specified.
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
#### Registering the shared secret key
|
|
|
|
|
|
|
|
Register a key with a name; this key must have administrative capabilities
|
|
|
|
on the remote hosts.
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
|
|
|
$ vault write ssh/keys/dev_key \
|
|
|
|
key=@dev_shared_key.pem
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
#### Create a Role
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Next, create a role. All of the machines contained within this CIDR block list
|
|
|
|
should be accessible using the registered shared secret key.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
|
|
|
$ vault write ssh/roles/dynamic_key_role \
|
|
|
|
key_type=dynamic \
|
|
|
|
key=dev_key \
|
|
|
|
admin_user=username \
|
|
|
|
default_user=username \
|
|
|
|
cidr_list=x.x.x.x/y
|
2015-08-14 19:41:26 +00:00
|
|
|
Success! Data written to: ssh/roles/dynamic_key_role
|
|
|
|
```
|
|
|
|
|
2016-03-01 15:12:50 +00:00
|
|
|
`cidr_list` is a comma separated list of CIDR blocks for which a role can generate
|
2016-03-01 16:21:29 +00:00
|
|
|
credentials. If this is empty, the role can only generate credentials if it belongs
|
2016-03-01 15:12:50 +00:00
|
|
|
to the set of zero-address roles.
|
|
|
|
|
|
|
|
Zero-address roles, configured via `/ssh/config/zeroaddress` endpoint, takes comma separated list
|
|
|
|
of role names that can generate credentials for any IP address.
|
2015-08-27 17:10:15 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Use the `install_script` option to provide an install script if the remote
|
|
|
|
hosts do not resemble a typical Linux machine. The default script is compiled
|
|
|
|
into the Vault binary, but it is straight forward to specify an alternate.
|
|
|
|
The script takes three arguments which are explained in the comments.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
To see the default, see [linux_install_script.go](https://github.com/hashicorp/vault/blob/master/builtin/logical/ssh/linux_install_script.go)
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
### Create a credential
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2016-05-30 05:26:51 +00:00
|
|
|
Create a dynamic key for an IP of the remote host that is covered by `dynamic_key_role`'s CIDR
|
2015-09-21 20:12:38 +00:00
|
|
|
list.
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2015-08-12 16:25:28 +00:00
|
|
|
$ vault write ssh/creds/dynamic_key_role ip=x.x.x.x
|
|
|
|
Key Value
|
2015-08-14 19:41:26 +00:00
|
|
|
lease_id ssh/creds/dynamic_key_role/8c4d2042-23bc-d6a8-42c2-6ff01cb83cf8
|
2015-08-12 16:25:28 +00:00
|
|
|
lease_duration 600
|
|
|
|
lease_renewable true
|
2015-08-14 19:41:26 +00:00
|
|
|
ip x.x.x.x
|
2015-08-12 16:25:28 +00:00
|
|
|
key -----BEGIN RSA PRIVATE KEY-----
|
2015-08-14 19:41:26 +00:00
|
|
|
MIIEpAIBAAKCAQEA5V/Y95qfGaUXRPkKNK9jgDHXPD2n5Ein+QTNnLSGrHtJUH7+
|
|
|
|
pgs/5Hc4//124P9qHNmjIYQVyvcLreFgSrQCq4K8193hmypBYtsvCgvpc+jEwaGA
|
|
|
|
zK0QV7uc1z8KL7FuRAxpHJwB6+nubOzzqM03xsViHRhaWhYVHw2Vl4oputSHE7R9
|
|
|
|
ugaTRg67wge4Nyi5RRL0RQcmW15/Vop8B6HpBSmZQy3enjg+32KbOWCMMTAPuF9/
|
|
|
|
DgxSgZQaFMjGN4RjDreZI8Vv5zIiFJzZ3KVOWy8piI0PblLnDpU4Q0QSQ9A+Vr7b
|
|
|
|
JS22Lbet1Zbapl/n947/r1wGObLCc5Lilu//1QIDAQABAoIBAHWLfdO9sETjHp6h
|
|
|
|
BULkkpgScpuTeSN6vGHXvUrOFKn1cCfJPNR4tWBuXI6LJM2+9nEccwXs+4IMwjZ0
|
|
|
|
ZfVCdI/SKtZxBXmP2PxBGMUMP7G/mn0kN64sDlD3ezOvQZgZVEmZFpCrvixYsG+v
|
|
|
|
qlpZ+HhrlJEWds7tvBsyyfNjwWjVIpm08zBmteFj4zu7OEcmGXEHDoxDXxyVP2BG
|
|
|
|
eLU/fM5JA2UEjfCQ1MIZ3rBtPePdz4LRpb+ajklqrUj1OHoiDrXa8EAf0/wDP9re
|
|
|
|
c1iH4bn7ZjYK0+IhZ+Pmw6gUftzZNWSC2kOLnZLdN/K7hgh0l0r0K/1eeXt43upB
|
|
|
|
WALNuiECgYEA8PM2Ob3XXKALF86PUewne4fCz9iixr/cIpvrEGrh9lyQRO8X5Jxb
|
|
|
|
ug38jEql4a574C6TSXfzxURza4P6lnfa0LvymmW0bhxZ5nev9kcAVnLKvpOUArTR
|
|
|
|
32k9bKXd6zp8Q9ZyVNwHRxcVs4YgwfJlcx8geC4o6YRiIjvcBQ9RVHkCgYEA87OK
|
|
|
|
lZDFBeEY/HVOxAQNXS5fgTd4U4DbwEJLv7SPk02v9oDkGHkpgMs4PcsIpCzsTpJ0
|
|
|
|
oXMfLSxZ1lmZiuUvAupKj/7RjJ0XyjSMfm1Zs81epWj+boVfM4amZNHVLIWgddmM
|
|
|
|
XzXEZKByvi1gs7qFcjQz2DEbZltWO6dX14O4Fz0CgYEAlWSWyHJWZ02r0xT1c7vS
|
|
|
|
NxtTxH7zXftzR9oYgtNiStfVc4gy7kGr9c3aOjnGZAlFMRhvpevDrxnj3lO0OTsS
|
|
|
|
5rzBjM1mc6cMboLjDPW01eTSpBroeE0Ym0arGQQ2djSK+5yowsixknhTsj2FbfsW
|
|
|
|
v6wa+6jTIQY9ujAXGOQIbzECgYAYuXlw7SwgCZNYYappFqQodQD5giAyEJu66L74
|
|
|
|
px/96N7WWoNJvFkqmPOOyV+KEIi0/ATbMGvUUHCY36RFRDU9zXldHJQz+Ogl+qja
|
|
|
|
VsvIAyj8DSfrHJrpBlsxVVyUVMZPzo+ARVs0flbF1qK9+Ul6qbMs1uaZvuCD0tmF
|
|
|
|
ovZ1XQKBgQDB0s7SDmAMgVjG8UBZgUru9vsDrxERT2BloptnnAjSiarLF5M+qeZO
|
|
|
|
7L4NLyVP39Z83eerEonzDAHHbvhPyi6n2YmnYhGjeP+lPZIVqGF9cpZD3q48YHZc
|
|
|
|
3ePn2/oLZrXKWOMyMwp2Uj+0SArCW+xMnoNp50sYNVR/JK3BPIdkag==
|
2015-08-12 16:25:28 +00:00
|
|
|
-----END RSA PRIVATE KEY-----
|
2015-08-14 19:41:26 +00:00
|
|
|
key_type dynamic
|
|
|
|
port 22
|
|
|
|
username username
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
### Establish an SSH session
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Save the key to a file (e.g. `dyn_key.pem`) and then use it to establish an
|
|
|
|
SSH session.
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2016-05-30 05:26:51 +00:00
|
|
|
$ ssh -i dyn_key.pem username@<IP of remote host>
|
|
|
|
username@<IP of remote host>:~$
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
### Automate it!
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
Creation of new key, saving to a file, and using it to establish an SSH session
|
|
|
|
can all be done with a single Vault CLI command.
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-10-12 16:10:22 +00:00
|
|
|
```text
|
2016-05-30 05:26:51 +00:00
|
|
|
$ vault ssh -role dynamic_key_role username@<IP of remote host>
|
|
|
|
username@<IP of remote host>:~$
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2016-12-26 14:03:27 +00:00
|
|
|
----------------------------------------------------
|
|
|
|
## III. CA Key Type
|
|
|
|
|
|
|
|
When using this type, an SSH key is generated and then used to sign other SSH keys.
|
|
|
|
The public half of the key is distributed to remote hosts while the private part
|
|
|
|
stays within Vault. This allows SSH public keys to be signed by Vault and then
|
|
|
|
verified using only the public key.
|
|
|
|
|
|
|
|
### Configure a CA certificate
|
|
|
|
|
|
|
|
To configure the backend, an SSH key pair must be generated to serve as the CA key:
|
|
|
|
|
|
|
|
```text
|
|
|
|
$ ssh-keygen -N '' -f ./ca -C 'SSH CA key pair'
|
|
|
|
```
|
|
|
|
|
|
|
|
Now that we have the SSH CA key pair, these can be used to configure the SSH CA backend:
|
|
|
|
|
|
|
|
```text
|
2017-03-01 20:50:23 +00:00
|
|
|
$ cat ca | vault write ssh/config/ca private_key=- public_key="$(cat ca.pub | tr -d '\n')"
|
|
|
|
Success! Data written to: ssh/config/ca
|
2016-12-26 14:03:27 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Now that the SSH CA key pair is successfully saved in the backend, the `ca` and
|
|
|
|
`ca.pub` files should be deleted from your local machine.
|
|
|
|
|
|
|
|
### Creating a Role
|
|
|
|
|
|
|
|
The next step is to configure a role. A role is a logical name that maps to a
|
|
|
|
policy used to generate those credentials. For example, let's create an
|
|
|
|
"example" role:
|
|
|
|
|
|
|
|
```text
|
2017-03-01 20:50:23 +00:00
|
|
|
$ vault write ssh/roles/example ttl=4h allow_user_certificates=true key_type=ca
|
|
|
|
Success! Data written to: ssh/roles/example
|
2016-12-26 14:03:27 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Create a Credential
|
|
|
|
|
|
|
|
By writing to the `roles/example` path we are defining the `example` role. To
|
|
|
|
sign an SSH public key, we simply write to the `sign` end point with that role
|
|
|
|
name: Vault is now configured to create and manage SSH certificates!
|
|
|
|
|
|
|
|
```text
|
2017-03-01 20:50:23 +00:00
|
|
|
$ cat dummy.pub | vault write ssh/sign/example public_key=-
|
2016-12-26 14:03:27 +00:00
|
|
|
Key Value
|
|
|
|
--- -----
|
2017-03-01 20:50:23 +00:00
|
|
|
lease_id ssh/sign/example/3c3740ee-6066-55c0-4a5d-82a544a474a3
|
2016-12-26 14:03:27 +00:00
|
|
|
lease_duration 768h0m0s
|
|
|
|
lease_renewable false
|
|
|
|
serial_number 8343f840b8a027a7
|
|
|
|
signed_key ssh-rsa-cert-v01@openssh.com AAAAHHNzaC1yc2EtY2VydC12MDFAb3BlbnNzaC5jb20AAAAgxSlUi1Fd38w93emsotVQBjLYorkQTmCyRo0XPxJw/poAAAADAQABAAABAQCgbXubSftRY1JFEfFpkoHkf/4WkGNQr8g+X1H8kcU/UJUoFZl5IXaZrDzRUTUUQsC3bZA6EPerqSlgpy9gSYn/dtGcCCoPyOUQpaz3vRbF180ddzJnjaJvIAg1PHecFFLC+WjCPFeGkZPc5Yr1NyGhL5GiMUbv5fIYfSM5REkydcEn5+fryfZq8ZCSNBa0KfHflWvy9Nn3i3ns1ZphkMPp+DRkGw0Iy4VetfvUWd3bbVRP8PMZOz0o9Bo/90qzST3qBJ6DZip9LehBXfoNk3dvD/Rkst4IdjBLVv/gHnwX9V0yG8NMUCHh695S0anNtbjCFW1JedYXH7h5ayGOPfivg0P4QLigJ6cAAAABAAAABHJvb3QAAAAAAAAAAFhfuTMAAAAAWF/xkQAAAAAAAAAAAAAAAAAAARcAAAAHc3NoLXJzYQAAAAMBAAEAAAEBALiUMk0TnJh++UOYEU6LcsRAxTcZbR31XbbvtXBGLdK9P92ufZuSxvASVjEoHiJuI+a+rnw7q4GGwoBZQ4wooN/Az5Iy7ez04sz629UINQgUfHbp8RHVk3tCBrJ1F0aQKNEDz3LKNNuAF6kJZrXZ2d0pdCDorm0cNfaYZxOmyKAQtVH454xR2gP0VYUwOWcxTPF8lnoNecL6drEKxg0eyGl2dK+MndsE2TwE9b1S2LDatzfmVzVKQWL5JJWgNwGNiy65E0C858TLzQ7imrVqPomp3SppWLItMUNHZgy9uujyS3BeMqzLT6e1e+ndWMD92Ei2/t95JaSR9IMmClQS0BkAAAEPAAAAB3NzaC1yc2EAAAEAM4vtt9WhBtB98XfJsVo5TXI+XU6aAXm/yZH8wRpCl3ghhBDk5ZFdZredLna2v8jYELTNJGt8LuFZVy7XoXgsPC58kwhWcYx2BbtN3GpBDijlG7Odozwf03RrJ48LgheI9UfF+8mituwrerQDYppPgW5tws+THllhcWD099LU+iDvuC69aVEDy+CZJZKBvaYVDQYtu5bVlqdlGo5KE1ASro2h/jLQG2atl4iwpQ7NKi5VF5YuNFNX9NsWFIqnm5ErwXLdroBJb/XOSSWNE8Vlsi+UhNRJ33o3/QwQ3nMAjyxh1btnv2HW0r4Z3D4a63r+HizFP+RrGdRzNf7xj9UiRw==
|
|
|
|
```
|
|
|
|
|
|
|
|
### Establish an SSH session
|
|
|
|
|
|
|
|
Save the key to a file (e.g. `dummy-cert.pem`) and then use it to establish an
|
|
|
|
SSH session.
|
|
|
|
|
|
|
|
```text
|
|
|
|
$ ssh -i dummy.pem username@<IP of remote host>
|
|
|
|
username@<IP of remote host>:~$
|
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
----------------------------------------------------
|
|
|
|
## API
|
|
|
|
|
|
|
|
### /ssh/keys/
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
2016-08-04 20:07:40 +00:00
|
|
|
Creates or updates a named key.
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/keys/<key name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">key</span>
|
|
|
|
<span class="param-flags">required</span>
|
2015-08-18 01:22:03 +00:00
|
|
|
(String)
|
2015-09-21 20:12:38 +00:00
|
|
|
SSH private key with appropriate privileges on remote hosts.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
#### DELETE
|
2015-08-14 19:41:26 +00:00
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
2016-08-04 20:07:40 +00:00
|
|
|
Deletes a named key.
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>DELETE</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/keys/<key name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>None</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
### /ssh/roles/
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Creates or updates a named role.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/roles/<role name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">key</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
<span class="param-flags">required for Dynamic Key type, N/A for
|
2017-03-01 20:50:23 +00:00
|
|
|
OTP type, N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2015-08-18 01:22:03 +00:00
|
|
|
Name of the registered key in Vault. Before creating the role, use
|
|
|
|
the `keys/` endpoint to create a named key.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">admin_user</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
<span class="param-flags">required for Dynamic Key type, N/A for OTP
|
2017-03-01 20:50:23 +00:00
|
|
|
type, N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Admin user at remote host. The shared key being registered should
|
|
|
|
be for this user and should have root or sudo privileges. Every
|
|
|
|
time a dynamic credential is generated for a client,
|
|
|
|
Vault uses this admin username to login to remote host and install
|
|
|
|
the generated credential.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">default_user</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">required for Dynamic Key type, required
|
|
|
|
for OTP type, optional for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Default username for which a credential will be generated.
|
|
|
|
When the endpoint 'creds/' is used without a username, this
|
|
|
|
value will be used as default username.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">cidr_list</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, optional for
|
|
|
|
OTP type, N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Comma separated list of CIDR blocks for which the role is
|
|
|
|
applicable for. CIDR blocks can belong to more than one role.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
2015-08-28 03:19:55 +00:00
|
|
|
<li>
|
|
|
|
<span class="param">exclude_cidr_list</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, optional for
|
|
|
|
OTP type, N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Comma-separated list of CIDR blocks. IP addresses belonging to
|
|
|
|
these blocks are not accepted by the role. This is particularly
|
|
|
|
useful when big CIDR blocks are being used by the role and certain
|
|
|
|
parts need to be kept out.
|
2015-08-28 03:19:55 +00:00
|
|
|
</li>
|
2015-08-14 19:41:26 +00:00
|
|
|
<li>
|
|
|
|
<span class="param">port</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, optional for
|
|
|
|
OTP type, N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(Integer)
|
|
|
|
Port number for SSH connection. The default is '22'. Port number
|
|
|
|
does not play any role in OTP generation. For the 'otp' backend
|
|
|
|
type, this is just a way to inform the client about the port number
|
|
|
|
to use. The port number will be returned to the client by Vault
|
|
|
|
along with the OTP.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">key_type</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">required for all types</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2016-12-26 14:03:27 +00:00
|
|
|
Type of credentials generated by this role. Can be either `otp`,
|
|
|
|
`dynamic` or `ca`.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">key_bits</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, N/A for OTP type,
|
|
|
|
N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(Integer)
|
|
|
|
Length of the RSA dynamic key in bits; can be either 1024 or 2048.
|
|
|
|
1024 the default.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">install_script</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, N/A for OTP type,
|
|
|
|
N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Script used to install and uninstall public keys in the target
|
|
|
|
machine. Defaults to the built-in script.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allowed_users</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for all types</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2016-05-30 07:01:47 +00:00
|
|
|
If this option is not specified, credentials can be created only for
|
|
|
|
`default_user` at the remote host. If this field is set, credentials
|
|
|
|
can be created only for the users in this list and for the `default_user`.
|
2016-05-30 07:12:43 +00:00
|
|
|
If this option is explicitly set to `*`, then credentials can be created
|
|
|
|
for any username.
|
2017-02-28 08:24:31 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allowed_domains</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
(String)
|
|
|
|
If this option is not specified, client can request for a signed certificate for any
|
|
|
|
valid host. If only certain domains are allowed, then this list enforces it.
|
|
|
|
If this option is explicitly set to `*`, then credentials can be created
|
|
|
|
for any domain.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
2015-08-27 15:41:29 +00:00
|
|
|
<li>
|
|
|
|
<span class="param">key_option_specs</span>
|
2016-12-26 14:03:27 +00:00
|
|
|
<span class="param-flags">optional for Dynamic Key type, N/A for OTP type,
|
|
|
|
N/A for CA type</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Comma separated option specification which will be prefixed to RSA
|
|
|
|
keys in the remote host's authorized_keys file. N.B.: Vault does
|
|
|
|
not check this string for validity.
|
2015-08-27 15:41:29 +00:00
|
|
|
</li>
|
2016-12-26 14:03:27 +00:00
|
|
|
<li>
|
|
|
|
<span class="param">ttl</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
The Time To Live value provided as a string duration with time suffix.
|
|
|
|
Hour is the largest suffix. If not set, uses the system default value
|
|
|
|
or the value of `max_ttl`, whichever is shorter.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">max_ttl</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
The maximum Time To Live provided as a string duration with time
|
|
|
|
suffix. Hour is the largest suffix. If not set, defaults to the system
|
|
|
|
maximum lease TTL.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allowed_critical_options</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
A comma-separated list of critical options that certificates can have when
|
|
|
|
signed. To allow any critical options, set this to an empty string. Will
|
|
|
|
default to allowing any critical options.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allowed_extensions</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
A comma-separated list of extensions that certificates can have when
|
|
|
|
signed. To allow any critical options, set this to an empty string. Will
|
|
|
|
default to allowing any extensions.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">default_critical_options</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
A map of critical options certificates should have if none are provided
|
2017-03-01 20:50:23 +00:00
|
|
|
when signing. This field takes in key value pairs in JSON format. Note
|
|
|
|
that these are not restricted by `allowed_critical_options`. Defaults
|
|
|
|
to none.
|
2016-12-26 14:03:27 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">default_extensions</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
2017-03-01 20:50:23 +00:00
|
|
|
A map of extensions certificates should have if none are provided when
|
|
|
|
signing. This field takes in key value pairs in JSON format. Note that
|
|
|
|
these are not restricted by `allowed_extensions`. Defaults to none.
|
2016-12-26 14:03:27 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allow_user_certificates</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
If set, certificates are allowed to be signed for use as a 'user'.
|
2017-02-28 08:24:31 +00:00
|
|
|
Defaults to false.
|
2016-12-26 14:03:27 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allow_host_certificates</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
If set, certificates are allowed to be signed for use as a 'host'.
|
2017-02-28 08:24:31 +00:00
|
|
|
Defaults to false.
|
2016-12-26 14:03:27 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allow_bare_domains</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
If set, host certificates that are requested are allowed to use the base
|
|
|
|
domains listed in "allowed_users", e.g. "example.com". This
|
|
|
|
is a separate option as in some cases this can be considered a security
|
|
|
|
threat. Defaults to false.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">allow_subdomains</span>
|
|
|
|
<span class="param-flags">N/A for Dynamic Key type, N/A for OTP type,
|
|
|
|
optional for CA type</span>
|
|
|
|
If set, host certificates that are requested are allowed to use
|
|
|
|
subdomains of those listed in "allowed_users". Defaults
|
|
|
|
to false.
|
|
|
|
</li>
|
2015-08-14 19:41:26 +00:00
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
#### GET
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Queries a named role.
|
|
|
|
</dd>
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>GET</dd>
|
2015-08-12 16:25:28 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/roles/<role name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>None</dd>
|
2015-09-21 20:12:38 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
<dt>Returns</dt>
|
2015-09-21 20:12:38 +00:00
|
|
|
<dd>For a dynamic key role:
|
2015-08-14 19:41:26 +00:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2015-10-12 16:10:22 +00:00
|
|
|
"admin_user": "username",
|
|
|
|
"cidr_list": "x.x.x.x/y",
|
|
|
|
"default_user": "username",
|
|
|
|
"key": "<key name>",
|
|
|
|
"key_type": "dynamic",
|
|
|
|
"port": 22
|
2015-08-14 19:41:26 +00:00
|
|
|
}
|
2015-08-12 16:25:28 +00:00
|
|
|
```
|
2015-10-12 16:10:22 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
<dd>For an OTP role:
|
2015-08-14 19:41:26 +00:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2015-10-12 16:10:22 +00:00
|
|
|
"cidr_list": "x.x.x.x/y",
|
|
|
|
"default_user": "username",
|
|
|
|
"key_type": "otp",
|
|
|
|
"port": 22
|
2015-08-14 19:41:26 +00:00
|
|
|
}
|
2016-12-26 14:03:27 +00:00
|
|
|
```
|
|
|
|
</dd>
|
|
|
|
<dd>For a CA role:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"allow_bare_domains": false,
|
|
|
|
"allow_host_certificates": true,
|
|
|
|
"allow_subdomains": false,
|
|
|
|
"allow_user_certificates": true,
|
|
|
|
"allowed_critical_options": "",
|
|
|
|
"allowed_extensions": "",
|
|
|
|
"allowed_valid_principals": "",
|
|
|
|
"default_critical_options": {},
|
|
|
|
"default_extensions": {},
|
|
|
|
"max_ttl": "768h",
|
|
|
|
"ttl": "4h"
|
|
|
|
}
|
2015-08-14 19:41:26 +00:00
|
|
|
```
|
|
|
|
</dd>
|
|
|
|
|
2016-01-28 19:41:43 +00:00
|
|
|
#### LIST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Returns a list of available roles. Only the role names are returned, not
|
|
|
|
any values.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
2016-09-30 19:47:33 +00:00
|
|
|
<dd>LIST/GET</dd>
|
2016-01-28 19:41:43 +00:00
|
|
|
|
|
|
|
<dt>URL</dt>
|
2016-09-30 19:47:33 +00:00
|
|
|
<dd>`/ssh/roles` (LIST) or `/ssh/roles?list=true` (GET)</dd>
|
2016-01-28 19:41:43 +00:00
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
None
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
|
2016-12-26 14:03:27 +00:00
|
|
|
```json
|
2016-01-28 19:41:43 +00:00
|
|
|
{
|
|
|
|
"auth": null,
|
|
|
|
"data": {
|
|
|
|
"keys": ["dev", "prod"]
|
|
|
|
},
|
2016-09-28 22:32:49 +00:00
|
|
|
"lease_duration": 2764800,
|
2016-01-28 19:41:43 +00:00
|
|
|
"lease_id": "",
|
|
|
|
"renewable": false
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2015-08-14 19:41:26 +00:00
|
|
|
|
2015-09-21 20:12:38 +00:00
|
|
|
#### DELETE
|
2015-08-14 19:41:26 +00:00
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Deletes a named role.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>DELETE</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/roles/<role name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>None</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
2016-03-01 15:12:50 +00:00
|
|
|
|
|
|
|
### /ssh/config/zeroaddress
|
|
|
|
|
|
|
|
#### GET
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Returns the list of configured zero-address roles.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>GET</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/config/zeroaddress`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>None</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lease_id":"",
|
|
|
|
"renewable":false,
|
|
|
|
"lease_duration":0,
|
|
|
|
"data":{
|
|
|
|
"roles":[
|
|
|
|
"otp_key_role"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"warnings":null,
|
|
|
|
"auth":null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</dd>
|
2016-12-26 14:03:27 +00:00
|
|
|
|
2016-03-01 15:12:50 +00:00
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Configures zero-address roles.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/config/zeroaddress`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">roles</span>
|
|
|
|
<span class="param-flags">required</span>
|
2016-03-01 16:21:29 +00:00
|
|
|
A string containing comma separated list of role names which allows credentials to be requested
|
|
|
|
for any IP address. CIDR blocks previously registered under these roles will be ignored.
|
2016-03-01 15:12:50 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
#### DELETE
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Deletes the zero-address roles configuration.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>DELETE</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/config/zeroaddress`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>None</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
### /ssh/creds/
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
2015-09-21 20:12:38 +00:00
|
|
|
Creates credentials for a specific username and IP with the
|
|
|
|
parameters defined in the given role.
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/creds/<role name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">username</span>
|
|
|
|
<span class="param-flags">optional</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
|
|
|
Username on the remote host.
|
2015-08-14 19:41:26 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">ip</span>
|
|
|
|
<span class="param-flags">required</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2015-08-14 19:41:26 +00:00
|
|
|
IP of the remote host.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
2015-09-21 20:12:38 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
<dt>Returns</dt>
|
2016-01-28 08:56:59 +00:00
|
|
|
<dd>For a dynamic key role:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lease_id": "",
|
|
|
|
"renewable": false,
|
|
|
|
"lease_duration": 0,
|
|
|
|
"data": {
|
|
|
|
"admin_user": "rajanadar",
|
|
|
|
"allowed_users": "",
|
|
|
|
"cidr_list": "x.x.x.x/y",
|
|
|
|
"default_user": "rajanadar",
|
|
|
|
"exclude_cidr_list": "x.x.x.x/y",
|
|
|
|
"install_script": "pretty_large_script",
|
|
|
|
"key": "5d9ee6a1-c787-47a9-9738-da243f4f69bf",
|
|
|
|
"key_bits": 1024,
|
|
|
|
"key_option_specs": "",
|
|
|
|
"key_type": "dynamic",
|
|
|
|
"port": 22
|
|
|
|
},
|
|
|
|
"warnings": null,
|
|
|
|
"auth": null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
2016-01-28 08:56:59 +00:00
|
|
|
<dd>For an OTP role:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lease_id": "sshs/creds/c3c2e60c-5a48-415a-9d5a-a41e0e6cdec5/3ee6ad28-383f-d482-2427-70498eba4d96",
|
|
|
|
"renewable": false,
|
2016-09-28 22:32:49 +00:00
|
|
|
"lease_duration": 2764800,
|
2016-01-28 08:56:59 +00:00
|
|
|
"data": {
|
|
|
|
"ip": "127.0.0.1",
|
|
|
|
"key": "6d6411fd-f622-ea0a-7e2c-989a745cbbb2",
|
|
|
|
"key_type": "otp",
|
|
|
|
"port": 22,
|
|
|
|
"username": "rajanadar"
|
|
|
|
},
|
|
|
|
"warnings": null,
|
|
|
|
"auth": null
|
|
|
|
}
|
|
|
|
```
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
2016-01-28 08:56:59 +00:00
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
### /ssh/lookup
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
2015-09-21 20:12:38 +00:00
|
|
|
Lists all of the roles with which the given IP is associated.
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/lookup`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">ip</span>
|
|
|
|
<span class="param-flags">required</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2015-08-14 19:41:26 +00:00
|
|
|
IP of the remote host.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
2016-01-28 09:04:35 +00:00
|
|
|
<dd>An array of roles as a secret structure.
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lease_id": "",
|
|
|
|
"renewable": false,
|
|
|
|
"lease_duration": 0,
|
|
|
|
"data": {
|
|
|
|
"roles": ["fe6f61b7-7e4a-46a6-b2c8-0d530b8513df", "6d6411fd-f622-ea0a-7e2c-989a745cbbb2"]
|
|
|
|
},
|
|
|
|
"warnings": null,
|
|
|
|
"auth": null
|
|
|
|
}
|
|
|
|
```
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
### /ssh/verify
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
2015-09-21 20:12:38 +00:00
|
|
|
Verifies if the given OTP is valid. This is an unauthenticated
|
|
|
|
endpoint.
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/verify`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">otp</span>
|
|
|
|
<span class="param-flags">required</span>
|
2015-09-21 20:12:38 +00:00
|
|
|
(String)
|
2015-08-14 19:41:26 +00:00
|
|
|
One-Time-Key that needs to be validated.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
2016-01-28 04:04:11 +00:00
|
|
|
<dd>A `200` response code for a valid OTP.
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lease_id":"",
|
|
|
|
"renewable":false,
|
|
|
|
"lease_duration":0,
|
|
|
|
"data":{
|
|
|
|
"ip":"127.0.0.1",
|
|
|
|
"username":"rajanadar"
|
|
|
|
},
|
|
|
|
"warnings":null,
|
|
|
|
"auth":null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-08-14 19:41:26 +00:00
|
|
|
</dd>
|
2016-01-28 04:04:11 +00:00
|
|
|
|
2016-09-08 15:13:13 +00:00
|
|
|
<dd>A `400` BadRequest response code with 'OTP not found' message, for an invalid OTP.</dd>
|
2016-12-26 14:03:27 +00:00
|
|
|
|
|
|
|
### /ssh/config/ca
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Allows submitting the CA information for the backend via an SSH key pair.
|
|
|
|
_If you have already set a certificate and key, they will be overridden._<br /><br />
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/config/ca`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">private_key</span>
|
|
|
|
<span class="param-flags">required</span>
|
|
|
|
The private key part the SSH CA key pair.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">public_key</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
The public key part of the SSH CA key pair. Note that this will not be validated
|
|
|
|
and will be returned as-is by the `/ssh/public_key` endpoint.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
A `204` response code.
|
|
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
### /ssh/sign
|
|
|
|
#### POST
|
|
|
|
|
|
|
|
<dl class="api">
|
|
|
|
<dt>Description</dt>
|
|
|
|
<dd>
|
|
|
|
Signs an SSH public key based on the supplied parameters, subject to the
|
|
|
|
restrictions contained in the role named in the endpoint.
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Method</dt>
|
|
|
|
<dd>POST</dd>
|
|
|
|
|
|
|
|
<dt>URL</dt>
|
|
|
|
<dd>`/ssh/sign/<role name>`</dd>
|
|
|
|
|
|
|
|
<dt>Parameters</dt>
|
|
|
|
<dd>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<span class="param">public_key</span>
|
|
|
|
<span class="param-flags">required</span>
|
|
|
|
SSH public key that should be signed.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">ttl</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
Requested Time To Live. Cannot be greater than the role's `max_ttl`
|
|
|
|
value. If not provided, the role's `ttl` value will be used. Note that
|
|
|
|
the role values default to system values if not explicitly set.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">valid_principals</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
Valid principals, either usernames or hostnames, that the certificate
|
|
|
|
should be signed for. Defaults to none.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">cert_type</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
Type of certificate to be created; either "user" or "host". Defaults to
|
|
|
|
"user".
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">key_id</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
Key id that the created certificate should have. If not specified,
|
|
|
|
the display name of the token will be used.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">critical_options</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
A map of the critical options that the certificate should be signed for.
|
|
|
|
Defaults to none.
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<span class="param">extensions</span>
|
|
|
|
<span class="param-flags">optional</span>
|
|
|
|
A map of the extensions that the certificate should be signed for.
|
|
|
|
Defaults to none
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>Returns</dt>
|
|
|
|
<dd>
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2017-03-01 20:50:23 +00:00
|
|
|
"lease_id": "ssh/sign/example/097bf207-96dd-0041-0e83-b23bd1923993",
|
2016-12-26 14:03:27 +00:00
|
|
|
"renewable": false,
|
|
|
|
"lease_duration": 21600,
|
|
|
|
"data": {
|
|
|
|
"serial_number": "f65ed2fd21443d5c",
|
|
|
|
"signed_key": "ssh-rsa-cert-v01@openssh.com AAAAHHNzaC1y...\n"
|
|
|
|
},
|
|
|
|
"auth": null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</dd>
|
|
|
|
</dl>
|