https://github.com/bsedin/ansible-graylog
Ansible role for graylog container
https://github.com/bsedin/ansible-graylog
ansible ansible-role docker elasticsearch graylog log logging
Last synced: about 2 months ago
JSON representation
Ansible role for graylog container
- Host: GitHub
- URL: https://github.com/bsedin/ansible-graylog
- Owner: bsedin
- License: mit
- Created: 2018-11-19T14:11:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-10T12:42:13.000Z (almost 6 years ago)
- Last Synced: 2025-04-03T11:45:56.805Z (about 1 year ago)
- Topics: ansible, ansible-role, docker, elasticsearch, graylog, log, logging
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Graylog 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-graylog.git library/graylog
```
Use role:
```yaml
---
- hosts: cdn01.yourserver.io
remote_user: ansible
become: true
roles:
- graylog
```
See default variables at `defaults/main.yml`.