Skip to content

Commit 300ff46

Browse files
Fix incorrect match type descriptions in security docs
1 parent 268a16f commit 300ff46

File tree

1 file changed

+2
-2
lines changed
  • content/en/docs/concepts/security

1 file changed

+2
-2
lines changed

content/en/docs/concepts/security/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,9 +710,9 @@ Most fields in authorization policies support all the following matching
710710
schemas:
711711

712712
- Exact match: exact string match.
713-
- Prefix match: a string with an ending `"*"`. For example, `"test.abc.*"`
713+
- Suffix match: a string with an ending `"*"`. For example, `"test.abc.*"`
714714
matches `"test.abc.com"`, `"test.abc.com.cn"`, `"test.abc.org"`, etc.
715-
- Suffix match: a string with a starting `"*"`. For example, `"*.abc.com"`
715+
- Prefix match: a string with a starting `"*"`. For example, `"*.abc.com"`
716716
matches `"eng.abc.com"`, `"test.eng.abc.com"`, etc.
717717
- Presence match: `*` is used to specify anything but not empty. To specify
718718
that a field must be present, use the `fieldname: ["*"]`format. This is

0 commit comments

Comments
 (0)