Can logstash_admin built-in role make indices?

Hello, i'm planning to add a new user in kibana for logstash operation. I noticed the role logstash_admin which is alerady built-in. My question is, can the logstash_admin role make new indices (as configured in logstash config) in elasticsearch? Here is my planned config:

input{}
filter{}
output{
  elasticsearch{
    hosts=>some.ip.here:9200
    user=>"user_with_logstash_admin_role"
    password=>"passwordhere"
  }
}

where the "user_with_logstash_admin_role" is user made in kibana with logstash_admin as the role.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.