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
- Host: GitHub
- URL: https://github.com/bsedin/ansible-elastic-beats
- Owner: bsedin
- License: mit
- Created: 2018-03-09T13:04:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T16:00:22.000Z (about 6 years ago)
- Last Synced: 2025-02-09T01:17:46.217Z (8 months ago)
- Topics: ansible-role, docker, elastic-beats, filebeat, heartbeat, metricbeat
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```