Configuring Authentication Credentials for Auditbeatedit

When sending data to a secured cluster through the elasticsearch output, Auditbeat must either provide basic authentication credentials or present a client certificate.

To configure authentication credentials for Auditbeat:

  1. Create a role that has the manage_index_templates and monitor cluster privileges, and read, write, and create_index privileges for the indices that Auditbeat creates. You can create roles from the Management / Roles UI in Kibana or through the role API. For example, the following request creates a auditbeat_writer role:

    POST _xpack/security/role/auditbeat_writer
    {
      "cluster": ["manage_index_templates", "monitor"],
      "indices": [
        {
          "names": [ "auditbeat-*" ], 
          "privileges": ["write","create_index"]
        }
      ]
    }

    If you use a custom Auditbeat index pattern, specify that pattern instead of the default auditbeat-* pattern.

  2. Assign the writer role to the user that Auditbeat will use to connect to Elasticsearch:

    1. To authenticate as a native user, create a user for the Auditbeat to use internally and assign it the writer role. You can create users from the Management / Users UI in Kibana or through the user API. For example, the following request creates a auditbeat_internal user that has the auditbeat_writer role:

      POST /_xpack/security/user/auditbeat_internal
      {
        "password" : "x-pack-test-password",
        "roles" : [ "auditbeat_writer"],
        "full_name" : "Internal Auditbeat User"
      }
    2. To authenticate using PKI authentication, assign the writer role to the internal Auditbeat user in the role_mapping.yml configuration file. Specify the user by the distinguished name that appears in its certificate.

      auditbeat_writer:
        - "cn=Internal Auditbeat User,ou=example,o=com"

      For more information, see Using Role Mapping Files.

  3. Configure authentication credentials for the elasticsearch output in the Auditbeat configuration file:

    1. To use basic authentication, configure the username and password settings. For example, the following Auditbeat output configuration uses the native auditbeat_internal user to connect to Elasticsearch:

      output.elasticsearch:
          hosts: ["localhost:9200"]
          index: "auditbeat"
          username: "auditbeat_internal"
          password: "x-pack-test-password"
    2. To use PKI authentication, configure the certificate and key settings:

      output.elasticsearch:
          hosts: ["localhost:9200"]
          index: "auditbeat"
          ssl.certificate: "/etc/pki/client/cert.pem" 
          ssl.key: "/etc/pki/client/cert.key"

      The distinguished name (DN) in the certificate must be mapped to the writer role in the role_mapping.yml configuration file on each node in the Elasticsearch cluster.