Versions: OpenSearch 3.1
The documentation of the action.auto_create_index option defines this option as a boolean. So it can only be either enabled or disabled. I would like to enable auto_create_index but only for those that have a defined template, kind of like the dynamic: "strict_allow_templates" from mappings, this really helps preventing human error. With only the enabled and disabled state it is not possible.
In ElasticSearch it is possible to provide a comma-separated list of index name patterns to this config, which is not the ideal as it would be necessary to update the configuration whenever a new template is created but at least allows the behavior.
Is this possible with OpenSearch?