Set order of audit log template to 1000 (elastic/x-pack-elasticsearch#4156)
This commit sets the order of the audit log template to 1000 instead of using the max value. This will allow a user to define a template that adds an alias. Original commit: elastic/x-pack-elasticsearch@2267322755
This commit is contained in:
parent
92207dba70
commit
1776905a2b
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"index_patterns": [ ".security_audit_log*" ],
|
"index_patterns": [ ".security_audit_log*" ],
|
||||||
"order": 2147483647,
|
"order": 1000,
|
||||||
"settings": {
|
"settings": {
|
||||||
"index.format": 6
|
"index.format": 6
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue