2020-07-07 15:42:01 +00:00
|
|
|
|
---
|
|
|
|
|
layout: docs
|
|
|
|
|
page_title: Resource Quotas
|
|
|
|
|
description: Providing measures against misbehaving applications and users overdrawing resources in Vault.
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Resource Quotas
|
|
|
|
|
|
|
|
|
|
Every single interaction with Vault, whether to put secrets into the key/value
|
|
|
|
|
store or to generate new pairs of database credentials for the MySQL database,
|
|
|
|
|
needs to go through Vault’s API.
|
|
|
|
|
|
|
|
|
|
One side effect of the API driven model is that applications and users can
|
|
|
|
|
misbehave by overwhelming system resources through consistent and high volume API
|
|
|
|
|
requests resulting in denial-of-service issues in some Vault nodes or even the
|
|
|
|
|
entire Vault cluster. This risk is significantly increased when Vault API endpoints
|
|
|
|
|
are exposed to thousands or millions of services deployed across a global infrastructure,
|
|
|
|
|
especially in use cases of Vault where Vault is deployed as a service for internal
|
|
|
|
|
developers.
|
|
|
|
|
|
|
|
|
|
Vault provides a feature, resource quotas, that allows Vault operators to specify
|
|
|
|
|
limits on resources used in Vault. Specifically, Vault allows operators to create
|
2022-08-02 19:37:56 +00:00
|
|
|
|
and configure API rate limits. Users of Vault Enterprise have a second option, alongside
|
2023-01-26 00:12:15 +00:00
|
|
|
|
rate limits, [lease-count quotas](/vault/docs/enterprise/lease-count-quotas), which can
|
2022-08-02 19:37:56 +00:00
|
|
|
|
limit the number of leases that can be in use at one time.
|
2020-07-07 15:42:01 +00:00
|
|
|
|
|
|
|
|
|
## Rate Limit Quotas
|
|
|
|
|
|
|
|
|
|
Vault allows operators to create rate limit quotas which enforce API rate
|
|
|
|
|
limiting using a [token bucket](https://en.wikipedia.org/wiki/Token_bucket) algorithm.
|
2022-08-02 19:37:56 +00:00
|
|
|
|
A rate limit quota can be created at the root level or defined on a namespace,
|
|
|
|
|
mount, or full API path by specifying a `path` when creating the quota. The rate
|
|
|
|
|
limiter is applied to each unique client IP address on a per-node basis (i.e. rate limit
|
|
|
|
|
quotas are not replicated). A client may invoke `rate` requests at any given second,
|
2020-07-16 18:34:43 +00:00
|
|
|
|
after which they may invoke additional requests at `rate` per-second.
|
2020-07-07 15:42:01 +00:00
|
|
|
|
|
|
|
|
|
A rate limit quota defined at the root level (i.e. empty `path`) is inherited by
|
|
|
|
|
all namespaces and mounts. It acts as a single rate limiter for the entire Vault
|
|
|
|
|
API. A rate limit quota defined on a namespace takes precedence over the global
|
2022-08-02 19:37:56 +00:00
|
|
|
|
rate limit quota, a rate limit quota defined for a mount takes precedence over
|
|
|
|
|
the global and namespace rate limit quotas, and a rate limit quota defined for
|
|
|
|
|
a specific path will take precedence over global, namespace, and mount quotas.
|
|
|
|
|
Additionally, quotas defined with a `role` to limit login requests made using
|
|
|
|
|
that role on the specified auth mount will take precedence over all other quotas.
|
|
|
|
|
In other words, the most specific quota rule will be applied.
|
2020-07-07 15:42:01 +00:00
|
|
|
|
|
2020-08-17 02:09:18 +00:00
|
|
|
|
A rate limit can be created with an optional `block_interval`, such that when set
|
|
|
|
|
to a non-zero value, any client that hits a rate limit threshold will be blocked
|
|
|
|
|
from all subsequent requests for a duration of `block_interval` seconds.
|
|
|
|
|
|
2020-07-07 15:42:01 +00:00
|
|
|
|
Vault also allows the inspection of the state of rate limiting in a Vault node
|
2023-01-26 00:12:15 +00:00
|
|
|
|
through various [metrics](/vault/docs/internals/telemetry#Resource-Quota-Metrics) exposed
|
2020-07-07 15:42:01 +00:00
|
|
|
|
and through enabling optional audit logging.
|
|
|
|
|
|
|
|
|
|
## Exempt Routes
|
|
|
|
|
|
2020-10-16 18:58:19 +00:00
|
|
|
|
By default, the following paths are exempt from rate limiting. However, Vault
|
|
|
|
|
operators can override the set of paths that are exempt from all rate limit
|
|
|
|
|
resource quotas by updating the `rate_limit_exempt_paths` configuration field.
|
2020-07-07 15:42:01 +00:00
|
|
|
|
|
2022-12-09 13:49:17 +00:00
|
|
|
|
- `sys/generate-recovery-token/attempt`
|
|
|
|
|
- `sys/generate-recovery-token/update`
|
|
|
|
|
- `sys/generate-root/attempt`
|
|
|
|
|
- `sys/generate-root/update`
|
|
|
|
|
- `sys/health`
|
|
|
|
|
- `sys/seal-status`
|
|
|
|
|
- `sys/unseal`
|
2020-07-07 15:42:01 +00:00
|
|
|
|
|
2022-05-20 01:04:46 +00:00
|
|
|
|
## Tutorial
|
2020-07-23 14:56:00 +00:00
|
|
|
|
|
|
|
|
|
Refer to [Protecting Vault with Resource
|
2023-02-07 04:34:51 +00:00
|
|
|
|
Quotas](/vault/tutorials/operations/resource-quotas) for a
|
2020-07-23 14:56:00 +00:00
|
|
|
|
step-by-step tutorial.
|
|
|
|
|
|
2020-07-07 15:42:01 +00:00
|
|
|
|
## API
|
|
|
|
|
|
|
|
|
|
Rate limit quotas can be managed over the HTTP API. Please see
|
2023-01-26 00:12:15 +00:00
|
|
|
|
[Rate Limit Quotas API](/vault/api-docs/system/rate-limit-quotas) for more details.
|