2015-03-04 21:10:10 +00:00
|
|
|
FORMAT: 1A
|
|
|
|
|
|
|
|
# vault
|
|
|
|
|
|
|
|
The Vault API gives you full access to the Vault project.
|
|
|
|
|
2015-03-04 21:17:12 +00:00
|
|
|
If you're browsing this API specifiction in GitHub or in raw
|
|
|
|
format, please excuse some of the odd formatting. This document
|
|
|
|
is in api-blueprint format that is read by viewers such as
|
|
|
|
Apiary.
|
|
|
|
|
2015-03-04 21:10:10 +00:00
|
|
|
## Sealed vs. Unsealed
|
|
|
|
|
|
|
|
Whenever an individual Vault server is started, it is started
|
|
|
|
in the _sealed_ state. In this state, it knows where its data
|
|
|
|
is located, but the data is encrypted and Vault doesn't have the
|
|
|
|
encryption keys to access it. Before Vault can operate, it must
|
|
|
|
be _unsealed_.
|
|
|
|
|
|
|
|
**Note:** Sealing/unsealing has no relationship to _authentication_
|
|
|
|
which is separate and still required once the Vault is unsealed.
|
|
|
|
|
|
|
|
Instead of being sealed with a single key, we utilize
|
|
|
|
[Shamir's Secret Sharing](http://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing)
|
|
|
|
to shard a key into _n_ parts such that _t_ parts are required
|
|
|
|
to reconstruct the original key, where `t <= n`. This means that
|
|
|
|
Vault itself doesn't know the original key, and no single person
|
|
|
|
has the original key (unless `n = 1`, or `t` parts are given to
|
|
|
|
a single person).
|
|
|
|
|
|
|
|
Unsealing is done via an unauthenticated
|
|
|
|
[unseal API](#reference/seal/unseal/unseal). This API takes a single
|
|
|
|
master shard and progresses the unsealing process. Once all shards
|
|
|
|
are given, the Vault is either unsealed or resets the unsealing
|
|
|
|
process if the key was invalid.
|
|
|
|
|
|
|
|
The entire seal/unseal state is server-wide. This allows multiple
|
|
|
|
distinct operators to use the unseal API (or more likely the
|
|
|
|
`vault unseal` command) from separate computers/networks and never
|
|
|
|
have to transmit their key in order to unseal the vault in a
|
|
|
|
distributed fashion.
|
|
|
|
|
2015-03-04 21:17:12 +00:00
|
|
|
## Transport
|
|
|
|
|
|
|
|
The API is expected to be accessed over a TLS connection at
|
|
|
|
all times, with a valid certificate that is verified by a well
|
|
|
|
behaved client.
|
|
|
|
|
2015-03-04 21:10:10 +00:00
|
|
|
## Authentication
|
|
|
|
|
|
|
|
Once the Vault is unsealed, every other operation requires
|
|
|
|
authentication. There are multiple methods for authentication
|
|
|
|
that can be enabled (see
|
|
|
|
[authentication](#reference/authentication)).
|
|
|
|
|
|
|
|
The process for authentication across multiple requests is
|
|
|
|
still TODO. Please assume this already works for now.
|
|
|
|
|
2015-03-04 21:17:12 +00:00
|
|
|
## Error Response
|
|
|
|
|
|
|
|
A common JSON structure is always returned to return errors:
|
|
|
|
|
|
|
|
{
|
|
|
|
"errors": [
|
|
|
|
"message",
|
|
|
|
"another message"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
This structure will be sent down for any non-20x HTTP status.
|
|
|
|
|
2015-03-04 21:10:10 +00:00
|
|
|
## HTTP Status Codes
|
|
|
|
|
|
|
|
The following HTTP status codes are used throughout the API.
|
|
|
|
|
|
|
|
- `200` - Success with data.
|
|
|
|
- `204` - Success, no data returned.
|
2015-03-04 21:17:12 +00:00
|
|
|
- `400` - Invalid request, missing or invalid data. See the
|
|
|
|
"validation" section for more details on the error response.
|
2015-03-04 21:10:10 +00:00
|
|
|
- `401` - Unauthorized, your authentication details are either
|
|
|
|
incorrect or you don't have access to this feature.
|
|
|
|
- `404` - Invalid path. This can both mean that the path truly
|
|
|
|
doesn't exist or that you don't have permission to view a
|
|
|
|
specific path. We use 404 in some cases to avoid state leakage.
|
|
|
|
- `429` - Rate limit exceeded. Try again after waiting some period
|
|
|
|
of time.
|
|
|
|
- `500` - Internal server error. An internal error has occurred,
|
|
|
|
try again later. If the error persists, report a bug.
|
|
|
|
- `503` - Vault is down for maintenance or is currently sealed.
|
|
|
|
Try again later.
|
|
|
|
|
|
|
|
# Group Seal/Unseal
|
|
|
|
|
|
|
|
## Seal [/sys/seal]
|
|
|
|
### Seal Status [GET]
|
|
|
|
Returns the status of whether the vault is currently
|
|
|
|
sealed or not, as well as the progress of unsealing.
|
|
|
|
|
|
|
|
The response has the following attributes:
|
|
|
|
|
|
|
|
- sealed (boolean) - If true, the vault is sealed. Otherwise,
|
|
|
|
it is unsealed.
|
|
|
|
- t (int) - The "t" value for the master key, or the number
|
|
|
|
of shards needed total to unseal the vault.
|
|
|
|
- n (int) - The "n" value for the master key, or the total
|
|
|
|
number of shards of the key distributed.
|
|
|
|
- progress (int) - The number of master key shards that have
|
|
|
|
been entered so far towards unsealing the vault.
|
|
|
|
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"sealed": true,
|
|
|
|
"t": 3,
|
|
|
|
"n": 5,
|
|
|
|
"progress": 1
|
|
|
|
}
|
|
|
|
|
|
|
|
### Seal [PUT]
|
|
|
|
Seal the vault.
|
|
|
|
|
|
|
|
Sealing the vault locks Vault from any future operations on any
|
|
|
|
secrets or system configuration until the vault is once again
|
|
|
|
sealed. Internally, sealing throws away the keys to access the
|
|
|
|
encrypted vault data, so Vault is unable to access the data without
|
|
|
|
unsealing to get the encryption keys.
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
## Unseal [/sys/unseal]
|
|
|
|
### Unseal [PUT]
|
|
|
|
Unseal the vault.
|
|
|
|
|
|
|
|
Unseal the vault by entering a portion of the master key. The
|
|
|
|
response object will tell you if the unseal is complete or
|
|
|
|
only partial.
|
|
|
|
|
|
|
|
If the vault is already unsealed, this does nothing. It is
|
|
|
|
not an error, the return value just says the vault is unsealed.
|
|
|
|
Due to the architecture of Vault, we cannot validate whether
|
|
|
|
any portion of the unseal key given is valid until all keys
|
|
|
|
are inputted, therefore unsealing an already unsealed vault
|
|
|
|
is still a success even if the input key is invalid.
|
|
|
|
|
|
|
|
+ Request (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"key": "value"
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"sealed": true,
|
|
|
|
"t": 3,
|
|
|
|
"n": 5,
|
|
|
|
"progress": 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Group Authentication
|
|
|
|
|
|
|
|
## List Auth Methods [/sys/auth]
|
|
|
|
### List all auth methods [GET]
|
|
|
|
Lists all available authentication methods.
|
|
|
|
|
|
|
|
This returns the name of the authentication method as well as
|
|
|
|
a human-friendly long-form help text for the method that can be
|
|
|
|
shown to the user as documentation.
|
|
|
|
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
|
|
|
|
[{
|
|
|
|
"name": "token",
|
|
|
|
"help": "Multi-line description, can contain '\n'."
|
|
|
|
}, {
|
|
|
|
"name": "password",
|
|
|
|
"help": "Another multi-line description."
|
|
|
|
}]
|
|
|
|
|
|
|
|
## Single Auth Method [/sys/auth/{id}]
|
|
|
|
|
|
|
|
+ Parameters
|
|
|
|
+ id (required, string) ... The name of the auth method.
|
|
|
|
|
|
|
|
### Enable an auth method [PUT]
|
|
|
|
Enables an authentication method.
|
|
|
|
|
|
|
|
The body of the request depends on the authentication method
|
|
|
|
being used. Please reference the documentation for the specific
|
|
|
|
authentication method you're enabling in order to determine what
|
|
|
|
parameters you must give it.
|
|
|
|
|
|
|
|
If an authentication method is already enabled, then this can be
|
|
|
|
used to change the configuration. Multiple authentication methods
|
|
|
|
with the same type but different settings cannot be enabled at this
|
|
|
|
time in Vault.
|
|
|
|
|
|
|
|
+ Request (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"key": "value",
|
|
|
|
"key2": "value2"
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
### Disable an auth method [DELETE]
|
|
|
|
Disables an authentication method. Previously authenticated sessions
|
|
|
|
are immediately invalidated.
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
# Group Mounts
|
|
|
|
|
|
|
|
Logical backends are mounted at _mount points_, similar to
|
|
|
|
filesystems. This allows you to mount the "aws" logical backend
|
|
|
|
at the "aws-us-east" path, so all access is at `/aws-us-east/keys/foo`
|
|
|
|
for example. This enables multiple logical backends to be enabled.
|
|
|
|
|
|
|
|
## Mounts [/sys/mounts]
|
|
|
|
### List all mounts [GET]
|
|
|
|
|
|
|
|
Lists all the active mount points.
|
|
|
|
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"aws": {
|
|
|
|
"type": "aws",
|
|
|
|
"description": "AWS"
|
|
|
|
},
|
|
|
|
"pg": {
|
|
|
|
"type": "postgresql",
|
|
|
|
"description": "PostgreSQL dynamic users"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
### New Mount [POST]
|
|
|
|
|
|
|
|
Mount a logical backend to a new path.
|
|
|
|
|
|
|
|
Configuration for this new backend is done via the normal
|
|
|
|
read/write mechanism once it is mounted.
|
|
|
|
|
|
|
|
+ Request (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"path": "aws-eu",
|
|
|
|
"type": "aws",
|
|
|
|
"description": "EU AWS tokens"
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
## Single Mount [/sys/mounts/{path}]
|
|
|
|
### Unmount [DELETE]
|
|
|
|
|
|
|
|
Unmount a mount point.
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
## Remount [/sys/remount]
|
|
|
|
### Remount [POST]
|
|
|
|
|
|
|
|
Move an already-mounted backend to a new path.
|
|
|
|
|
|
|
|
+ Request (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"from": "aws",
|
|
|
|
"to": "aws-east"
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Response 204
|
|
|
|
|
|
|
|
# Group Secrets
|
|
|
|
|
|
|
|
## Generic [/{mount}/{path}]
|
|
|
|
|
|
|
|
This group documents the general format of reading and writing
|
|
|
|
to Vault. The exact structure of the keyspace is defined by the
|
|
|
|
logical backends in use, so documentation related to
|
|
|
|
a specific backend should be referenced for details on what keys
|
|
|
|
and routes are expected.
|
|
|
|
|
|
|
|
The path for examples are `/prefix/path`, but in practice
|
|
|
|
these will be defined by the backends that are mounted. For
|
|
|
|
example, reading an AWS key might be at the `/aws/root` path.
|
|
|
|
These paths are defined by the logical backends.
|
|
|
|
|
|
|
|
+ Parameters
|
|
|
|
+ mount (required, string) ... The mount point for the
|
|
|
|
logical backend. Example: `aws`.
|
|
|
|
+ path (optional, string) ... The path within the backend
|
|
|
|
to read or write data.
|
|
|
|
|
|
|
|
### Read [GET]
|
|
|
|
|
|
|
|
Read data from vault.
|
|
|
|
|
|
|
|
The data read from the vault can either be a secret or
|
|
|
|
arbitrary configuration data. The type of data returned
|
|
|
|
depends on the path, and is defined by the logical backend.
|
|
|
|
|
|
|
|
If the return value is a secret, then the return structure
|
|
|
|
is a mixture of arbitrary key/value along with the following
|
|
|
|
fields which are guaranteed to exist:
|
|
|
|
|
|
|
|
- `vault_id` (string) - A unique ID used for renewal and
|
|
|
|
revocation.
|
|
|
|
|
|
|
|
- `lease_duration` (int) - The time in seconds that a secret is
|
|
|
|
valid for before it must be renewed.
|
|
|
|
|
|
|
|
If the return value is not a secret, then the return structure
|
|
|
|
is an arbitrary JSON object.
|
|
|
|
|
|
|
|
+ Response 200 (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"vault_id": "UUID",
|
|
|
|
"lease_duration": 3600,
|
|
|
|
"key": "value"
|
|
|
|
}
|
|
|
|
|
|
|
|
### Write [PUT]
|
|
|
|
|
|
|
|
Write data to vault.
|
|
|
|
|
|
|
|
The behavior and arguments to the write are defined by
|
|
|
|
the logical backend.
|
|
|
|
|
|
|
|
+ Request (application/json)
|
|
|
|
|
|
|
|
{
|
|
|
|
"key": "value"
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Response 204
|