Category: Elasticsearch

elasticsearch ansible playbook

Elasticsearch Playbook

The Ansible playbook below can be used to quickly install an Elasticsearch server. An Elasticsearch server is an important part of your ELK stack. You can store all kinds of items in it. In...

elasticsearch ansible playbook

Add a repository via Ansible

Here we’ll describe how to add a repository via Ansible. – name: Add Elasticsearch repository into sources list   apt_repository:     repo: deb https://artifacts.elastic.co/packages/6.x/apt stable main     state: present The example above...