vault_quota_rate_limit

Manage rate limit quotas which enforce API rate limiting using a token bucket algorithm. A rate limit quota can be created at the root level or defined on a namespace or mount by specifying a path when creating the quota.

See Vault's Documentation for more information.

Example Usage

resource "vault_quota_rate_limit" "global" {
  name = "global"
  path = ""
  rate = 100
}

Argument Reference

The following arguments are supported:

Attributes Reference

No additional attributes are exported by this resource.

Import

Rate limit quotas can be imported using their names

$ terraform import vault_quota_rate_limit.global global