An open API service indexing awesome lists of open source software.

https://github.com/bsedin/ansible-elastic-beats


https://github.com/bsedin/ansible-elastic-beats

ansible-role docker elastic-beats filebeat heartbeat metricbeat

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Elasticsearch role for ansible

Create `./library` directory in your ansible project:

```
mkdir ./library
```

And configure `ansible.cfg`:

```
[defaults]
roles_path = ./library
```

Add submodule:

```
git submodule add git@github.com:kressh/ansible-elastic-beats.git library/elastic-beats
```

Use role:

```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- elastic-beats
```