https://github.com/bsedin/ansible-elastalert
https://github.com/bsedin/ansible-elastalert
ansible ansible-role docker elastalert elasticsearch
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsedin/ansible-elastalert
- Owner: bsedin
- License: mit
- Created: 2018-03-09T13:03:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-20T09:27:43.000Z (about 7 years ago)
- Last Synced: 2025-04-03T11:45:46.523Z (about 1 year ago)
- Topics: ansible, ansible-role, docker, elastalert, elasticsearch
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- 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-elastalert.git library/elastalert
```
Use role:
```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- elastalert
```