Clarify default behavior of auto_create_index (#46134)

Be specific about the default behaviour of `action.auto_create_index` when a list is given.
This commit is contained in:
Jay Greenberg 2019-08-31 12:14:34 -04:00 committed by Ryan Ernst
parent a078bb4b92
commit 6fed082148
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ automatically. You can modify this setting to explicitly allow or block
automatic creation of indices that match specified patterns, or set it to automatic creation of indices that match specified patterns, or set it to
`false` to disable automatic index creation entirely. Specify a `false` to disable automatic index creation entirely. Specify a
comma-separated list of patterns you want to allow, or prefix each pattern with comma-separated list of patterns you want to allow, or prefix each pattern with
`+` or `-` to indicate whether it should be allowed or blocked. `+` or `-` to indicate whether it should be allowed or blocked. When a list is
specified, the default behaviour is to disallow.
[source,js] [source,js]
-------------------------------------------------- --------------------------------------------------