
This addition is an updated of the curent elk_metrics which will install Elasticsearc, Logstash and Kibana 6.x. It also include configuration guide for haproxy endpoints Change-Id: Iac4dec6d17bc75433e5fe672f3b9781536b8e619
26 lines
777 B
YAML
26 lines
777 B
YAML
---
|
|
- name: add reverse proxy to kibana dashboard
|
|
hosts: kibana
|
|
become: true
|
|
tags: nginx-setup
|
|
vars_files:
|
|
- vars/variables.yml
|
|
tasks:
|
|
- name: Ensure Nginx is installed.
|
|
apt: name={{ item }} state=present update_cache=yes
|
|
with_items:
|
|
- nginx
|
|
- apache2-utils
|
|
- python-passlib
|
|
- name: create kibana user to access web interface
|
|
htpasswd: path=/etc/nginx/htpasswd.users name={{ kibana_username }} password={{ kibana_password }} owner=root mode=0644
|
|
- name: Drop Nginx default conf file
|
|
template:
|
|
src: templates/nginx_default.j2
|
|
dest: /etc/nginx/sites-available/default
|
|
- name: Enable and restart nginx
|
|
service:
|
|
name: "nginx"
|
|
enabled: true
|
|
state: restarted
|