Grant users access to secured resources
editGrant users access to secured resources
editYou can use role-based access control to grant users access to secured resources. The roles that you set up depend on your organization’s security requirements and the minimum privileges required to use specific features.
Typically you need the create the following separate roles:
- setup role for setting up index templates and other dependencies
- monitoring role for sending monitoring information
- writer role for publishing events collected by Filebeat
- reader role for Kibana users who need to view and create visualizations that access Filebeat data
X-Pack security provides built-in roles that grant a subset of the privileges needed by Filebeat users. When possible, use the built-in roles to minimize the affect of future changes on your security strategy.
Grant privileges and roles needed for setup
editSetting up Filebeat is an admin-level task that requires extra privileges. As a best practice, grant the setup role to administrators only, and use a more restrictive role for event publishing.
Administrators who set up Filebeat typically need to load mappings, dashboards, and other objects used to index data into Elasticsearch and visualize it in Kibana.
To grant users the required privileges:
-
Create a setup role, called something like
filebeat_setup
, that has the following privileges:Type Privilege Purpose Cluster
monitor
Retrieve cluster details (e.g. version)
Cluster
manage_ilm
Set up and manage index lifecycle management (ILM) policy
Cluster
manage_ml
Set up Machine Learning job configurations
Index
manage
onfilebeat-*
indicesSet up aliases used by ILM
Index
read
onfilebeat-*
indicesRead Filebeat indices in order to set up Machine Learning jobs
Omit any privileges that aren’t relevant in your environment.
These instructions assume that you are using the default name for Filebeat indices. If you are using a custom name, modify the privileges to match your index naming pattern.
-
Assign the setup role, along with the following built-in roles, to users who need to set up Filebeat:
Role Purpose kibana_admin
Load dependencies, such as example dashboards, if available, into Kibana
ingest_admin
Set up index templates and, if available, ingest pipelines
beats_admin
Enroll and manage configurations in Beats central management
Omit any roles that aren’t relevant in your environment.
Grant privileges and roles needed for monitoring
editX-Pack security provides built-in users and roles for monitoring. The privileges and roles needed depend on the method used to collect monitoring data.
Important note for Elastic Cloud users
Built-in users are not available when running our hosted Elasticsearch Service on Elastic Cloud. To send monitoring data securely, create a monitoring user and grant it the roles described in the following sections.
-
If you’re using internal collection to collect metrics about Filebeat, X-Pack security provides the
beats_system
built-in user andbeats_system
built-in role to send monitoring information. You can use the built-in user, if it’s available in your environment, or create a user who has the privileges needed to send monitoring information.If you use the
beats_system
user, make sure you set the password.If you don’t use the
beats_system
user:-
Create a monitoring role, called something like
filebeat_monitoring
, that has the following privileges:Type Privilege Purpose Cluster
monitor
Retrieve cluster details (e.g. version)
Index
create_index
on.monitoring-beats-*
indicesCreate monitoring indices in Elasticsearch
Index
create_doc
on.monitoring-beats-*
indicesWrite monitoring events into Elasticsearch
-
Assign the monitoring role, along with the following built-in roles, to users who need to monitor Filebeat:
Role Purpose kibana_user
Use Kibana
monitoring_user
Use Stack Monitoring in Kibana to monitor Filebeat
-
-
If you’re using Metricbeat to collect metrics about Filebeat, X-Pack security provides the
remote_monitoring_user
built-in user, and theremote_monitoring_collector
andremote_monitoring_agent
built-in roles for collecting and sending monitoring information. You can use the built-in user, if it’s available in your environment, or create a user who has the privileges needed to collect and send monitoring information.If you use the
remote_monitoring_user
user, make sure you set the password.If you don’t use the
remote_monitoring_user
user:- Create a user on the production cluster who will collect and send monitoring information.
-
Assign the following roles to the user:
Role Purpose remote_monitoring_collector
Collect monitoring metrics from Filebeat
remote_monitoring_agent
Send monitoring data to the monitoring cluster
-
Assign the following role to users who will view the monitoring data in Kibana:
Role Purpose monitoring_user
Use Stack Monitoring in Kibana to monitor Filebeat
Grant privileges and roles needed for publishing
editUsers who publish events to Elasticsearch need to create and write to Filebeat indices. To minimize the privileges required by the writer role, use the setup role to pre-load dependencies. This section assumes that you’ve pre-loaded dependencies.
When using ILM, turn off the ILM setup check in the Filebeat config file before running Filebeat to publish events:
setup.ilm.check_exists: false
To grant the required privileges:
-
Create a writer role, called something like
filebeat_writer
, that has the following privileges:The
monitor
cluster privilege and thecreate_doc
privilege onfilebeat-*
indices are required in every configuration.Type Privilege Purpose Cluster
monitor
Retrieve cluster details (e.g. version)
Cluster
read_ilm
Read the ILM policy when connecting to clusters that support ILM. Not needed when
setup.ilm.check_exists
isfalse
.Cluster
cluster:admin/ingest/pipeline/get
Check for ingest pipelines used by modules. Needed when using modules.
Index
create_doc
onfilebeat-*
indicesWrite events into Elasticsearch
Index
view_index_metadata
onfilebeat-*
indicesCheck for alias when connecting to clusters that support ILM. Not needed when
setup.ilm.check_exists
isfalse
.Index
create_index
onfilebeat-*
indicesCreate daily indices when connecting to clusters that do not support ILM. Not needed when using ILM.
Omit any privileges that aren’t relevant in your environment.
- Assign the writer role to users who will index events into Elasticsearch.
Grant privileges and roles needed to read Filebeat data from Kibana
editKibana users typically need to view dashboards and visualizations that contain Filebeat data. These users might also need to create and edit dashboards and visualizations. If you’re using Beats central management, some of these users might need to create and manage configurations.
To grant users the required privileges:
-
Create a reader role, called something like
filebeat_reader
, that has the following privilege:Type Privilege Purpose Index
read
onfilebeat-*
indicesRead data indexed by Filebeat
Spaces
Read
orAll
on Dashboards, Visualize, and DiscoverAllow the user to view, edit, and create dashboards, as well as browse data.
Spaces
Read
orAll
on Kibana LogsAllow the use of Kibana Logs
-
Assign the reader role, along with the following built-in roles, to users who need to read Filebeat data:
Role Purpose monitoring_user
Allow users to monitor the health of Filebeat itself. Only assign this role to users who manage Filebeat.
beats_admin
Create and manage configurations in Beats central management. Only assign this role to users who need to use Beats central management. +
Learn more about users and roles
editWant to learn more about creating users and roles? See Secure a cluster. Also see:
- Security privileges for a description of available privileges
- Built-in roles for a description of roles that you can assign to users