mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
862e78f063
* Merge pull request #5773 from hashicorp/docs/rate-limiting-from-ip-addresses-1.16 updated docs for rate limiting for IP addresses - 1.16 * Merge pull request #5609 from hashicorp/docs/enterprise-utilization-reporting Add docs for enterprise utilization reporting * Merge pull request #5734 from hashicorp/docs/envoy-ext-1.16 Docs/envoy ext 1.16 * Merge pull request #5773 from hashicorp/docs/rate-limiting-from-ip-addresses-1.16 updated docs for rate limiting for IP addresses - 1.16 * Merge pull request #5609 from hashicorp/docs/enterprise-utilization-reporting Add docs for enterprise utilization reporting * Merge pull request #5734 from hashicorp/docs/envoy-ext-1.16 Docs/envoy ext 1.16 * fix build errors --------- Co-authored-by: trujillo-adam <47586768+trujillo-adam@users.noreply.github.com>
9 lines
918 B
Plaintext
9 lines
918 B
Plaintext
<!-- Potentially adapt to all conf refs that use this matching scheme-->
|
|
| Rule | Description | Data type | Default |
|
|
| --- | --- | --- | --- |
|
|
| `Contains` | Specifies a string that the input string must contain. | String | N/A |
|
|
| `Exact` | Specifies a string that the input string must match exactly. | String | N/A |
|
|
| `IgnoreCase` | Directs Envoy to ignore capitalization. If set to `true`, the other matching rules in the configuration are not case sensitive. This rule does not affect `SafeRegex`. | Boolean | `false` |
|
|
| `Prefix` | Specifies a string that the input string must begin with. | String | N/A |
|
|
| `SafeRegex` | Specifies a regular expression for matching the input string programmatically. Envoy supports [Google's RE2 regex engine](https://github.com/google/re2/wiki/Syntax). | String | N/A |
|
|
| `Suffix` | Specifies a string that the input string must end with. | String | N/A | |