"action.auto_create_index" is a bit more complicated than true / false values. We can use patterns in the names of indexes that need to be identified, and indicate whether it can be created automatically if it does not already exist.
An example would be
action.auto_create_index: -b*,+a*,-*
Here, an index starting with βaβ will be created automatically, while others starting with βbβ are not valid. - * indicates that other indexes are not allowed, and if you want them to be created manually.
The order of values ββalso matters. For more information, you can visit their documentation here.
source share