Merge pull request #14708 from Johnny Lim

* gh-14708:
  Fix broken Asciidoctor syntax
This commit is contained in:
Andy Wilkinson 2018-10-06 13:04:56 +01:00
commit 2c7b74db00

View File

@ -2440,11 +2440,11 @@ how to register handlers in the servlet container.
=== Sanitize sensible values
Information returned by the `env` and `configprops` endpoints can be somewhat sensitive
so keys matching a certain pattern are sanitized by default (i.e. their values are
replaced by `******`).
replaced by `+******+`).
Spring Boot uses sensible defaults for such keys: for instance, any key ending with the
word "password", "secret", "key" or "token" is sanitized. It is also possible to use a
regular expression instead, such as `*credentials.*` to sanitize any key that holds the
regular expression instead, such as `+*credentials.*+` to sanitize any key that holds the
word `credentials` as part of the key.
The patterns to use can be customized using the `endpoints.env.keys-to-sanitize` and