Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,3 @@ Additionally, Vault does not treat comma-separated strings in request
parameters as lists when evaluating `allowed_parameters` and `denied_parameters`.
For instance, configuring `denied_parameters` as `"Z": ["C", "D", ["C"], ["D"], ["C", "D"], ["D", "C"]]`
does not block requests that set `"Z": "C,D"` or `"Z": "D,C"`

<Tip title="Consider upgrading to 1.21.x or later">

Vault addressed the unexpected behavior of
`allowed_parameters` and `denied_parameters` in 1.21.x with
more intuitive list processing.

</Tip>
9 changes: 9 additions & 0 deletions content/vault/v1.16.x/content/docs/concepts/policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,15 @@ path "secret/foo" {

@include '../../../global/partials/policies/list-allowed-parameters.mdx'

<Tip title="Consider upgrading to a fixed version">

Vault 1.21.x introduced a more intuitive list processing for `allowed_parameters`
and `denied_parameters`. You can enable the intuitive list processing behavior
for Vault 1.16.x by upgrading to 1.16.28 or later and setting the
`VAULT_NEW_PER_ELEMENT_MATCHING_ON_LIST` environment variable.

</Tip>

### Required response wrapping TTLs

These parameters can be used to set minimums/maximums on TTLs set by clients
Expand Down
9 changes: 9 additions & 0 deletions content/vault/v1.17.x/content/docs/concepts/policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,15 @@ path "secret/foo" {

@include '../../../global/partials/policies/list-allowed-parameters.mdx'

<Tip title="Consider upgrading to a fixed version">

Vault 1.21.x introduced a more intuitive list processing for `allowed_parameters`
and `denied_parameters`. You can enable the intuitive list processing behavior
for Vault by upgrading to 1.19.12 or later and setting the
`VAULT_NEW_PER_ELEMENT_MATCHING_ON_LIST` environment variable.

</Tip>

### Required response wrapping TTLs

These parameters can be used to set minimums/maximums on TTLs set by clients
Expand Down
9 changes: 9 additions & 0 deletions content/vault/v1.18.x/content/docs/concepts/policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,15 @@ path "secret/foo" {

@include '../../../global/partials/policies/list-allowed-parameters.mdx'

<Tip title="Consider upgrading to a fixed version">

Vault 1.21.x introduced a more intuitive list processing for `allowed_parameters`
and `denied_parameters`. You can enable the intuitive list processing behavior
for Vault by upgrading to 1.19.12 or later and setting the
`VAULT_NEW_PER_ELEMENT_MATCHING_ON_LIST` environment variable.

</Tip>

### Required response wrapping TTLs

These parameters can be used to set minimums/maximums on TTLs set by clients
Expand Down
9 changes: 9 additions & 0 deletions content/vault/v1.19.x/content/docs/concepts/policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,15 @@ path "secret/foo" {

@include '../../../global/partials/policies/list-allowed-parameters.mdx'

<Tip title="Consider upgrading to a fixed version">

Vault 1.21.x introduced a more intuitive list processing for `allowed_parameters`
and `denied_parameters`. You can enable the intuitive list processing behavior
for Vault 1.19.x by upgrading to 1.19.12 or later and setting the
`VAULT_NEW_PER_ELEMENT_MATCHING_ON_LIST` environment variable.

</Tip>

### Required response wrapping TTLs

These parameters can be used to set minimums/maximums on TTLs set by clients
Expand Down
9 changes: 9 additions & 0 deletions content/vault/v1.20.x/content/docs/concepts/policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,15 @@ path "secret/foo" {

@include '../../../global/partials/policies/list-allowed-parameters.mdx'

<Tip title="Consider upgrading to a fixed version">

Vault 1.21.x introduced a more intuitive list processing for `allowed_parameters`
and `denied_parameters`. You can enable the intuitive list processing behavior
for Vault 1.20.x by upgrading to 1.20.6 or later and setting the
`VAULT_NEW_PER_ELEMENT_MATCHING_ON_LIST` environment variable.

</Tip>

### Required response wrapping TTLs

These parameters can be used to set minimums/maximums on TTLs set by clients
Expand Down
Loading