Skip to content
Merged
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
4 changes: 2 additions & 2 deletions content/en/docs/concepts/security/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,9 @@ Most fields in authorization policies support all the following matching
schemas:

- Exact match: exact string match.
- Prefix match: a string with an ending `"*"`. For example, `"test.abc.*"`
- Suffix match: a string with an ending `"*"`. For example, `"test.abc.*"`
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is an extra space between 'Suffix' and 'match'.

Suggested change
- Suffix match: a string with an ending `"*"`. For example, `"test.abc.*"`
- Suffix match: a string with an ending `"*"`. For example, `"test.abc.*"`

Copilot uses AI. Check for mistakes.
matches `"test.abc.com"`, `"test.abc.com.cn"`, `"test.abc.org"`, etc.
- Suffix match: a string with a starting `"*"`. For example, `"*.abc.com"`
- Prefix match: a string with a starting `"*"`. For example, `"*.abc.com"`
matches `"eng.abc.com"`, `"test.eng.abc.com"`, etc.
Comment on lines +713 to 716
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The definitions for prefix and suffix matches are reversed. Correct wording should be: 'Prefix match: a string with an ending "" (e.g., "test.abc.")' and 'Suffix match: a string with a starting "" (e.g., ".abc.com")'.

Copilot uses AI. Check for mistakes.
- Presence match: `*` is used to specify anything but not empty. To specify
that a field must be present, use the `fieldname: ["*"]`format. This is
Expand Down